Daryl Ronningen
69181599a5
Makes all the plugins lazyload, remove plugins with duplicate uses and just general nit picks and improvements Reviewed-on: Relms/neovim-config#1
24 lines
460 B
Lua
24 lines
460 B
Lua
local toggleterm = require("toggleterm")
|
|
|
|
toggleterm.setup({
|
|
size = 20,
|
|
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 = "float",
|
|
close_on_exit = true,
|
|
shell = vim.o.shell,
|
|
float_opts = {
|
|
border = "curved",
|
|
winblend = 0,
|
|
highlights = {
|
|
border = "Normal",
|
|
background = "Normal",
|
|
},
|
|
},
|
|
})
|