diff --git a/modules/home-manager/vim.nix b/modules/home-manager/vim.nix index 6765a0c..2f0e90b 100644 --- a/modules/home-manager/vim.nix +++ b/modules/home-manager/vim.nix @@ -1,4 +1,4 @@ -{ +{pkgs, ...}: { config = { enable = true; @@ -75,6 +75,10 @@ }; }; + extraPlugins = with pkgs.vimPlugins; [ + overseer-nvim + ]; + extraConfigLua = '' local Terminal = require('toggleterm.terminal').Terminal local lazygit = Terminal:new({ cmd = "lazygit", hidden = true, direction = "float" })