Initial commit

This commit is contained in:
Arkaprabha Chakraborty
2023-03-05 06:47:18 +05:30
commit 38e29f01ec
18 changed files with 721 additions and 0 deletions

16
lua/terminal.lua Normal file
View File

@@ -0,0 +1,16 @@
local ok, toggleterm = pcall(require, "toggleterm")
if not ok then
return
end
toggleterm.setup({
open_mapping = [[<C-\>]],
hide_numbers = true,
start_in_insert = true,
direction = "float",
close_on_exit = true,
shell = vim.o.shell,
float_opts = {
border = "curved",
},
})