nixos-config/modules/vim.nix

16 lines
290 B
Nix
Raw Permalink Normal View History

2021-11-03 18:37:52 +01:00
with import <nixpkgs> {};
2025-10-31 16:26:21 +01:00
vim-full.customize {
2021-11-03 18:37:52 +01:00
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
2022-09-25 02:13:28 +02:00
doki-theme-vim
2021-11-03 18:37:52 +01:00
];
};
};
}
2021-11-17 10:20:02 +01:00
# vim: set et ts=2 sw=2 ai: