nixos-config/modules/vim.nix
2021-11-06 00:07:40 +01:00

14 lines
248 B
Nix

with import <nixpkgs> {};
vim_configurable.customize {
name = "vim";
vimrcConfig = {
customRC = builtins.readFile ./vimrc;
packages.vim = with pkgs.vimPlugins; {
start = [
airline
syntastic
];
};
};
}