feat(init): first init

This commit is contained in:
darwincereska
2025-10-29 15:58:28 -04:00
commit 5a5c81eb60
34 changed files with 713 additions and 0 deletions

15
lua/plugins/terminal.lua Normal file
View 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,
}