move fish functions into nix

This commit is contained in:
Noah Masur
2022-04-30 10:21:43 -04:00
parent 47d09a98e2
commit f5508c747c
55 changed files with 331 additions and 727 deletions

View File

@ -13,6 +13,13 @@
programs.git.extraConfig.core.editor = "nvim";
home.sessionVariables = { EDITOR = "nvim"; };
programs.fish = {
shellAliases = { vim = "nvim"; };
shellAbbrs = {
vll = "vim -c 'Telescope oldfiles'";
vimrc = "vim ${builtins.toString ../../.}/nvim.configlink/init.lua";
};
};
};