From ea9af9f1b268521fbf84e5f73e47e42f2864dac7 Mon Sep 17 00:00:00 2001 From: Peter Weightman Date: Sun, 21 Apr 2024 19:27:30 +0100 Subject: [PATCH] add toggleterm --- lua/custom/plugins/init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index e0be5db9..d636234e 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -3,7 +3,6 @@ -- -- See the kickstart.nvim README for more information return { - { 'nvim-tree/nvim-web-devicons', opts = {} }, { 'folke/trouble.nvim', config = function() @@ -29,4 +28,7 @@ return { vim.keymap.set('n', 'u', vim.cmd.UndotreeToggle) end, }, + { 'akinsho/toggleterm.nvim', version = '*', opts = { + open_mapping = [[]], + } }, }