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 {
|
||||
myVim =
|
||||
with super;
|
||||
neovim.override {
|
||||
configure = {
|
||||
packages.myVimPackage = with pkgs.vimPlugins; {
|
||||
# loaded on start
|
||||
start = [
|
||||
ale
|
||||
base16-vim
|
||||
LanguageClient-neovim
|
||||
ctrlp
|
||||
direnv-vim
|
||||
fugitive
|
||||
haskell-vim
|
||||
jedi-vim
|
||||
nerdtree
|
||||
nerdtree-git-plugin
|
||||
supertab
|
||||
vim-dirdiff
|
||||
vim-pandoc
|
||||
vim-pandoc-syntax
|
||||
vim-nix
|
||||
vim-jinja
|
||||
which-key-nvim
|
||||
];
|
||||
};
|
||||
customRC = builtins.readFile ./vimrc;
|
||||
(self: super: {
|
||||
myVim = super.neovim.override {
|
||||
configure = {
|
||||
packages.myVimPackage = with self.pkgs.vimPlugins; {
|
||||
# loaded on start
|
||||
start = [
|
||||
ale
|
||||
base16-vim
|
||||
LanguageClient-neovim
|
||||
ctrlp
|
||||
direnv-vim
|
||||
fugitive
|
||||
haskell-vim
|
||||
jedi-vim
|
||||
nerdtree
|
||||
nerdtree-git-plugin
|
||||
supertab
|
||||
vim-dirdiff
|
||||
vim-pandoc
|
||||
vim-pandoc-syntax
|
||||
vim-nix
|
||||
vim-jinja
|
||||
which-key-nvim
|
||||
];
|
||||
};
|
||||
customRC = builtins.readFile ./vimrc;
|
||||
};
|
||||
};
|
||||
})
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue