blob: 4719b725a491092cf710ac4815eefc705c877007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{ pkgs }:
let
vimrc = builtins.readFile ./asset/rc.vim;
plugins = pkgs.callPackage ./plugins.nix {};
in
{
vam = {
knownPlugins = pkgs.vimPlugins // plugins;
pluginDictionaries = [
{ names = [
# UI enhancements
"vim-airline"
"goyo"
"vim-toggle-ui-elements"
# load project specific config
"vim-localvimrc"
# colors, syntax highlighting
"vim-color-akr"
"vim-polyglot"
"vim-addon-nix"
# file, buffer management
"ctrlp"
"vim-counterpoint"
"vim-signature"
# undo history tree
"vim-mundo"
# editing enhancements
"vim-wordmotion"
"vim-autoformat"
"surround"
"vim-unimpaired"
"vim-far"
# git integration
"fugitive"
"vim-gitgutter"
"vim-gina"
];}
];
};
customRC = vimrc;
}
|