Use vim-full instead of vim

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

View file

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

View file

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

View file

@ -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" = {