diff options
author | Adrian Kummerlaender | 2018-11-25 20:58:30 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2018-11-25 20:58:51 +0100 |
commit | 4be0c1f5f6b852d221169c0805d49922db70c912 (patch) | |
tree | 43e04088a2d810d70277f6e647c90ca175cc57f4 | |
parent | 249175e62a7c8db639fd6026ca2e23c981b8dbc3 (diff) | |
download | nixos_system-4be0c1f5f6b852d221169c0805d49922db70c912.tar nixos_system-4be0c1f5f6b852d221169c0805d49922db70c912.tar.gz nixos_system-4be0c1f5f6b852d221169c0805d49922db70c912.tar.bz2 nixos_system-4be0c1f5f6b852d221169c0805d49922db70c912.tar.lz nixos_system-4be0c1f5f6b852d221169c0805d49922db70c912.tar.xz nixos_system-4be0c1f5f6b852d221169c0805d49922db70c912.tar.zst nixos_system-4be0c1f5f6b852d221169c0805d49922db70c912.zip |
Add renameutils to global toolset
-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 = '' |