diff options
-rw-r--r-- | configuration.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index f46da35..5964da0 100644 --- a/configuration.nix +++ b/configuration.nix @@ -40,11 +40,17 @@ pkgs.htop pkgs.git pkgs.silver-searcher + pkgs.renameutils mypkgs.custom-vim ]; + variables = { + EDITOR = "vim"; + }; + shellAliases = { - "ls" = "ls --color=auto --group-directories-first"; + "ls" = "ls --color=auto --group-directories-first"; + "qmv" = "qmv --format=destination-only"; }; shellInit = '' |