From 1bc5e18a7cc49290673af8231a94cc3fba6dcc21 Mon Sep 17 00:00:00 2001 From: zackartz Date: Fri, 1 Mar 2024 12:59:24 -0500 Subject: [PATCH] 85 current 2024-03-01 12:59:19 24.05.20240228.9099616 6.6.18 * --- modules/home-manager/vim.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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" })