updated configuration

This commit is contained in:
2026-01-09 19:27:28 -07:00
parent 305f663a46
commit 6d79fde026
8 changed files with 328 additions and 0 deletions

View File

@@ -1,3 +1,13 @@
-- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here
vim.keymap.set("n", "<leader>th", function()
vim.cmd("lcd %:p:h")
vim.cmd("split | terminal")
end, { desc = "Terminal (horizontal)" })
vim.keymap.set("n", "<leader>tv", function()
vim.cmd("lcd %:p:h")
vim.cmd("vsplit | terminal")
end, { desc = "Terminal (vertical)" })