with keybinds
This commit is contained in:
17
lua/plugins/toggleterm.lua
Normal file
17
lua/plugins/toggleterm.lua
Normal 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,
|
||||
}
|
Reference in New Issue
Block a user