Merge pull request #201380 from Ma27/installer/vim-with-nix-support

nixos/profiles/base: install vim w/nix-syntax plugin
This commit is contained in:
Maximilian Bosch
2022-12-03 16:20:08 +01:00
committed by GitHub
+7 -1
View File
@@ -20,7 +20,13 @@
pkgs.mkpasswd # for generating password files
# Some text editors.
pkgs.vim
(pkgs.vim.customize {
name = "vim";
vimrcConfig.packages.default = {
start = [ pkgs.vimPlugins.vim-nix ];
};
vimrcConfig.customRC = "syntax on";
})
# Some networking tools.
pkgs.fuse