Lazy git commit

This commit is contained in:
2023-03-07 23:58:33 +05:30
parent dfc080931d
commit 101ad60a0b
15 changed files with 1 additions and 3 deletions

16
nvim/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",
},
})