nixos-config/vim.nix

15 lines
248 B
Nix
Raw Normal View History

2021-11-03 18:37:52 +01:00
with import <nixpkgs> {};
vim_configurable.customize {
name = "vim";
vimrcConfig = {
2021-11-04 13:04:03 +01:00
customRC = builtins.readFile ./vimrc;
2021-11-03 18:37:52 +01:00
packages.vim = with pkgs.vimPlugins; {
start = [
airline
syntastic
];
};
};
}