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