mine-hyprdots/.config/nvim/lua/plugins/toggle-term.lua

29 lines
570 B
Lua
Raw Normal View History

2024-09-12 22:26:43 +05:30
return {
"akinsho/toggleterm.nvim",
config = function()
require("toggleterm").setup({
size = 20,
open_mapping = [[<c-\>]],
hide_numbers = true,
shade_filetypes = {},
shade_terminals = true,
shading_factor = "1",
start_in_insert = true,
insert_mappings = true,
terminal_mappings = true,
persist_size = true,
direction = "float",
close_on_exit = true,
shell = vim.o.shell,
float_opts = {
border = "curved",
winblend = 3,
highlights = {
border = "Normal",
background = "Normal",
},
},
})
end,
}