Files
dotfiles/term/.config/nvim/lua/plugins/toggleterm.lua
T
2026-04-06 22:46:26 +02:00

29 lines
566 B
Lua

return {
"akinsho/toggleterm.nvim",
event = "VeryLazy",
config = function()
require("toggleterm").setup({
size = 10,
open_mapping = [[<c-ß>]],
hide_numbers = true,
shade_filetypes = {},
shade_terminals = true,
shading_factor = 2,
start_in_insert = true,
insert_mappings = true,
persist_size = true,
direction = "horizontal",
close_on_exit = true,
shell = vim.o.shell,
float_opts = {
border = "curved",
winblend = 0,
highlights = {
border = "Normal",
background = "Normal",
},
},
})
end,
}