overlay: clean up structure
This commit is contained in:
parent
75062d5568
commit
cfe1856b72
1 changed files with 26 additions and 28 deletions
|
|
@ -1,33 +1,31 @@
|
||||||
[
|
[
|
||||||
(self: super: rec {
|
(self: super: {
|
||||||
myVim =
|
myVim = super.neovim.override {
|
||||||
with super;
|
configure = {
|
||||||
neovim.override {
|
packages.myVimPackage = with self.pkgs.vimPlugins; {
|
||||||
configure = {
|
# loaded on start
|
||||||
packages.myVimPackage = with pkgs.vimPlugins; {
|
start = [
|
||||||
# loaded on start
|
ale
|
||||||
start = [
|
base16-vim
|
||||||
ale
|
LanguageClient-neovim
|
||||||
base16-vim
|
ctrlp
|
||||||
LanguageClient-neovim
|
direnv-vim
|
||||||
ctrlp
|
fugitive
|
||||||
direnv-vim
|
haskell-vim
|
||||||
fugitive
|
jedi-vim
|
||||||
haskell-vim
|
nerdtree
|
||||||
jedi-vim
|
nerdtree-git-plugin
|
||||||
nerdtree
|
supertab
|
||||||
nerdtree-git-plugin
|
vim-dirdiff
|
||||||
supertab
|
vim-pandoc
|
||||||
vim-dirdiff
|
vim-pandoc-syntax
|
||||||
vim-pandoc
|
vim-nix
|
||||||
vim-pandoc-syntax
|
vim-jinja
|
||||||
vim-nix
|
which-key-nvim
|
||||||
vim-jinja
|
];
|
||||||
which-key-nvim
|
|
||||||
];
|
|
||||||
};
|
|
||||||
customRC = builtins.readFile ./vimrc;
|
|
||||||
};
|
};
|
||||||
|
customRC = builtins.readFile ./vimrc;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
})
|
})
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue