fish shell abbrv for xclip pipe copy

main
Zynh Ludwig 2024-06-30 16:27:31 -07:00
parent 18291b9c8c
commit a450a41293
1 changed files with 4 additions and 2 deletions

View File

@ -22,10 +22,12 @@ in
programs.fish = { programs.fish = {
enable = true; enable = true;
shellAbbrs = {
copy = "xclip -sel clip";
};
interactiveShellInit = interactiveShellInit =
builtins.readFile "${inputs.fish_theme}/fish_prompt.fish" + "\n" + builtins.readFile "${inputs.fish_theme}/fish_prompt.fish" + "\n" +
builtins.readFile ../fish/config.fish builtins.readFile ../fish/config.fish;
;
}; };
}; };
} }