feat: Rearranges nvim configuration

This commit is contained in:
2024-12-20 08:10:53 -05:00
parent ee7854eafc
commit b78fb64bd3
33 changed files with 5 additions and 224 deletions

View File

@@ -0,0 +1,26 @@
return {
'akinsho/toggleterm.nvim',
enable = true,
lazy = true,
opts = {
size = 20,
open_mapping = [[<c-\>]],
hide_numbers = true,
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",
},
},
}
}