chore: workflow improvments

This commit is contained in:
Maurice Grönwoldt 2026-01-05 21:22:45 +01:00
commit c86613b65b
No known key found for this signature in database
GPG key ID: FBB005FE74FEF996
6 changed files with 91 additions and 25 deletions

30
lua/plugins/term.lua Normal file
View file

@ -0,0 +1,30 @@
return {
"akinsho/toggleterm.nvim",
version = "*",
config = true,
config = function()
function _G.set_terminal_keymaps()
local opts = { buffer = 0 }
vim.keymap.set("t", "<esc>", [[<C-\><C-n>]], opts)
vim.keymap.set("t", "jk", [[<C-\><C-n>]], opts)
vim.keymap.set("t", "<C-h>", [[<Cmd>wincmd h<CR>]], opts)
vim.keymap.set("t", "<C-j>", [[<Cmd>wincmd j<CR>]], opts)
vim.keymap.set("t", "<C-k>", [[<Cmd>wincmd k<CR>]], opts)
vim.keymap.set("t", "<C-l>", [[<Cmd>wincmd l<CR>]], opts)
vim.keymap.set("t", "<C-w>", [[<C-\><C-n><C-w>]], opts)
end
-- if you only want these mappings for toggle term use term://*toggleterm#* instead
vim.cmd("autocmd! TermOpen term://*toggleterm#* lua set_terminal_keymaps()")
require("toggleterm").setup()
end,
keys = {
{
"<leader>tt",
":ToggleTerm direction=float<CR>",
desc = "Toggle Terminal",
mode = { "n" },
silent = true,
},
},
}