nixos-config/modules/vim.nix
2025-10-31 16:26:21 +01:00

15 lines
290 B
Nix

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