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
commit d85c685320
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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