nixos-config/modules/vim.nix
2021-11-17 10:20:02 +01:00

15 lines
276 B
Nix

with import <nixpkgs> {};
vim_configurable.customize {
name = "vim";
vimrcConfig = {
customRC = builtins.readFile ./vimrc;
packages.vim = with pkgs.vimPlugins; {
start = [
airline
syntastic
];
};
};
}
# vim: set et ts=2 sw=2 ai: