Move vimplugin

This commit is contained in:
Ethan Lane 2024-09-21 14:11:18 +01:00
parent bc8b0d5adc
commit 6b8ee07795
2 changed files with 7 additions and 7 deletions

View file

@ -29,6 +29,13 @@ in {
gnome-keyring.enable = true; gnome-keyring.enable = true;
}; };
programs.neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [
packer-nvim
];
};
home = { home = {
username = "${username}"; username = "${username}";
homeDirectory = "/home/${username}"; homeDirectory = "/home/${username}";

View file

@ -1,11 +1,4 @@
{ {
home.file."/home/vylpes/.config/nvim/init.lua".source = ./init.lua; home.file."/home/vylpes/.config/nvim/init.lua".source = ./init.lua;
home.file."/home/vylpes/.config/nvim/coc-settings.json".source = ./coc-settings.json; home.file."/home/vylpes/.config/nvim/coc-settings.json".source = ./coc-settings.json;
programs.neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [
packer-nvim
];
};
} }