Use vim-full instead of vim
This commit is contained in:
parent
fa59b8483f
commit
b7602166ac
3 changed files with 5 additions and 5 deletions
|
@ -49,7 +49,7 @@
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
vim
|
||||
vim-full
|
||||
w3m
|
||||
wget
|
||||
zenith-nvidia
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
vim
|
||||
vim-full
|
||||
w3m
|
||||
wget
|
||||
zenith-nvidia
|
||||
|
|
|
@ -66,16 +66,16 @@ in {
|
|||
source = ../../../stow/ssh/.ssh/config;
|
||||
};
|
||||
".vim" = {
|
||||
enable = (builtins.elem pkgs.vim installedPkgs);
|
||||
enable = (builtins.elem pkgs.vim-full installedPkgs);
|
||||
source = ../../../stow/vim/.vim;
|
||||
recursive = true;
|
||||
};
|
||||
".vim/autoload/plug.vim" = {
|
||||
enable = (builtins.elem pkgs.vim installedPkgs);
|
||||
enable = (builtins.elem pkgs.vim-full installedPkgs);
|
||||
source = "${pkgs.vimPlugins.vim-plug}/plug.vim";
|
||||
};
|
||||
".vimrc" = {
|
||||
enable = (builtins.elem pkgs.vim installedPkgs);
|
||||
enable = (builtins.elem pkgs.vim-full installedPkgs);
|
||||
source = ../../../stow/vim/.vimrc;
|
||||
};
|
||||
".zshrc" = {
|
||||
|
|
Loading…
Reference in a new issue