add nvim config

This commit is contained in:
Benjamin Palko 2024-03-02 20:20:51 -05:00
parent 01dae7e4ca
commit 460bd73aed
30 changed files with 2689 additions and 0 deletions

View file

@ -0,0 +1,9 @@
local M = {
toggle = function()
local Terminal = require("toggleterm.terminal").Terminal
local k9s = Terminal:new { cmd = "k9s", direction = 'float', hidden = true }
k9s:toggle()
end,
}
return M

View file

@ -0,0 +1,9 @@
local M = {
toggle = function()
local Terminal = require("toggleterm.terminal").Terminal
local lazygit = Terminal:new { cmd = "lazygit", direction = 'float', hidden = true }
lazygit:toggle()
end,
}
return M