with keybinds

This commit is contained in:
2022-10-12 17:55:25 +02:00
parent f7b6dd262d
commit 642266466c
8 changed files with 231 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
return {
keys = "<C-/>",
module = "nvim-toggleterm",
config = function()
require("toggleterm").setup({
size = 20,
hide_numbers = true,
open_mapping = [[<C-/>]],
shade_filetypes = {},
shade_terminals = false,
shading_factor = 0.3, -- the degree by which to darken to terminal colour, default: 1 for dark backgrounds, 3 for light
start_in_insert = true,
persist_size = true,
direction = "horizontal",
})
end,
}