91 lines
2.4 KiB
Nix
91 lines
2.4 KiB
Nix
{
|
||
pkgs,
|
||
config,
|
||
lib,
|
||
...
|
||
}:
|
||
let
|
||
repaint = "commandline -f repaint";
|
||
fishKeybinds = {
|
||
# C-x to clear screen
|
||
"\\cx" = "clear && ${repaint}";
|
||
# C-z to return to background process
|
||
"\\cz" = "fg && ${repaint}";
|
||
# C-y to yank current command
|
||
"\\cy" = "wl-copy \$(commandline)";
|
||
# C-e to launch $EDITOR
|
||
"\\ce" = "$EDITOR";
|
||
# C-S-e to edit commandline using $EDITOR
|
||
"\\e\\[69\\;5u" = "edit_command_buffer";
|
||
# C-enter to run command through a pager
|
||
"\\e\\[13\\;2u" = "commandline -a ' | $PAGER' && commandline -f execute";
|
||
# C-g to open lazygit
|
||
"\\cg" = "lazygit";
|
||
# C-S-f to open mini.files
|
||
"\\e\\[70\\;5u" = ''nvim +":lua require('mini.files').open()"'';
|
||
};
|
||
|
||
mkKeybind =
|
||
key: value:
|
||
let
|
||
escaped = lib.escapeShellArg value;
|
||
in
|
||
''
|
||
bind -M default ${key} ${escaped}
|
||
bind -M insert ${key} ${escaped}
|
||
'';
|
||
in
|
||
{
|
||
# {{{ Fzf
|
||
programs.fzf = {
|
||
enable = true;
|
||
defaultOptions = [ "--no-scrollbar" ];
|
||
|
||
changeDirWidgetOptions = [ "--preview '${lib.getExe pkgs.eza} --icons --tree --color=always {}'" ];
|
||
|
||
fileWidgetOptions = [ "--preview '${lib.getExe pkgs.bat} --number --color=always {}'" ];
|
||
};
|
||
|
||
stylix.targets.fzf.enable = true;
|
||
# }}}
|
||
# {{{ Fish
|
||
programs.fish = {
|
||
enable = true;
|
||
interactiveShellInit = ''
|
||
# ❄️ Fish keybinds generated using nix ^~^
|
||
function fish_nix_key_bindings
|
||
${lib.concatStringsSep "\n" (lib.mapAttrsToList mkKeybind fishKeybinds)}
|
||
end
|
||
|
||
${builtins.readFile ./config.fish}
|
||
|
||
# Modify nix-shell to use `fish` as it's default shell
|
||
${lib.getExe pkgs.nix-your-shell} fish | source
|
||
'';
|
||
|
||
# {{{ Plugins
|
||
plugins =
|
||
let
|
||
plugins = with pkgs.fishPlugins; [
|
||
z # Jump to directories by typing "z <directory-name>"
|
||
done # Trigger a notification when long commands finish execution
|
||
puffer # Text expansion (i.e. expanding .... to ../../../)
|
||
sponge # Remove failed commands and whatnot from history
|
||
colored-man-pages
|
||
];
|
||
in
|
||
# For some reason home-manager expects a slightly different format 🤔
|
||
lib.forEach plugins (plugin: {
|
||
name = plugin.pname;
|
||
inherit (plugin) src;
|
||
});
|
||
# }}}
|
||
};
|
||
|
||
satellite.persistence.at.state.apps.fish.directories = [
|
||
"${config.xdg.dataHome}/fish"
|
||
"${config.xdg.dataHome}/z" # The z fish plugin requires this
|
||
];
|
||
# }}}
|
||
}
|