mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 05:24:41 -05:00
feat(init): first init
This commit is contained in:
15
lua/plugins/terminal.lua
Normal file
15
lua/plugins/terminal.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
return {
|
||||
"akinsho/toggleterm.nvim",
|
||||
version = "*",
|
||||
opt = {
|
||||
|
||||
},
|
||||
config = function()
|
||||
require("toggleterm").setup({
|
||||
direction = "float",
|
||||
close_on_exit = true,
|
||||
shell = "/bin/zsh -l",
|
||||
shade_in_terminals = true,
|
||||
})
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user