Use vim-full instead of vim

This commit is contained in:
Tibo De Peuter 2023-11-14 22:19:05 +01:00
parent fa59b8483f
commit b7602166ac
3 changed files with 5 additions and 5 deletions

View file

@ -49,7 +49,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
git git
vim vim-full
w3m w3m
wget wget
zenith-nvidia zenith-nvidia

View file

@ -61,7 +61,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
git git
vim vim-full
w3m w3m
wget wget
zenith-nvidia zenith-nvidia

View file

@ -66,16 +66,16 @@ in {
source = ../../../stow/ssh/.ssh/config; source = ../../../stow/ssh/.ssh/config;
}; };
".vim" = { ".vim" = {
enable = (builtins.elem pkgs.vim installedPkgs); enable = (builtins.elem pkgs.vim-full installedPkgs);
source = ../../../stow/vim/.vim; source = ../../../stow/vim/.vim;
recursive = true; recursive = true;
}; };
".vim/autoload/plug.vim" = { ".vim/autoload/plug.vim" = {
enable = (builtins.elem pkgs.vim installedPkgs); enable = (builtins.elem pkgs.vim-full installedPkgs);
source = "${pkgs.vimPlugins.vim-plug}/plug.vim"; source = "${pkgs.vimPlugins.vim-plug}/plug.vim";
}; };
".vimrc" = { ".vimrc" = {
enable = (builtins.elem pkgs.vim installedPkgs); enable = (builtins.elem pkgs.vim-full installedPkgs);
source = ../../../stow/vim/.vimrc; source = ../../../stow/vim/.vimrc;
}; };
".zshrc" = { ".zshrc" = {