2026 nvim config

This commit is contained in:
Will
2026-03-29 20:12:58 +01:00
commit 22e52c883a
17 changed files with 386 additions and 0 deletions

13
lua/plugins/terminal.lua Normal file
View File

@@ -0,0 +1,13 @@
return {
"akinsho/toggleterm.nvim",
version = "*",
config = function()
require("toggleterm").setup({
size = 15,
open_mapping = [[<C-\>]], -- toggle terminal with Ctrl + \
direction = "horizontal", -- options: 'vertical', 'tab', 'float'
shade_terminals = true,
})
end,
}