mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
nix: stop using with
namespace pollution
This commit is contained in:
parent
6877096a26
commit
10b33e5584
15 changed files with 132 additions and 125 deletions
|
|
@ -7,15 +7,19 @@
|
|||
{
|
||||
enable = true;
|
||||
extraConfig = readFile ./vimrc;
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
vim-sleuth
|
||||
vim-surround
|
||||
vim-fugitive
|
||||
vim-commentary
|
||||
undotree
|
||||
tabular
|
||||
vim-wakatime
|
||||
vim-caddyfile
|
||||
];
|
||||
plugins =
|
||||
let
|
||||
vpkgs = pkgs.vimPlugins;
|
||||
in
|
||||
[
|
||||
vpkgs.vim-sleuth
|
||||
vpkgs.vim-surround
|
||||
vpkgs.vim-fugitive
|
||||
vpkgs.vim-commentary
|
||||
vpkgs.undotree
|
||||
vpkgs.tabular
|
||||
vpkgs.vim-wakatime
|
||||
vpkgs.vim-caddyfile
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue