- NVIM: Mapped '<leader>xt' to close-tab, Noice message for directory

change sent to bottom  - was too distracting
- Kitty: Made the configuration more portable across *unix OSes
This commit is contained in:
Pratik Tripathy
2024-03-21 13:11:21 +05:30
parent 39992add32
commit ea30b2722f
6 changed files with 88 additions and 83 deletions

View File

@@ -88,3 +88,6 @@ vim.keymap.set("n", "]e", diagnostic_goto(true, "ERROR"), { desc = "Next Error"
vim.keymap.set("n", "[e", diagnostic_goto(false, "ERROR"), { desc = "Prev Error" })
vim.keymap.set("n", "]w", diagnostic_goto(true, "WARN"), { desc = "Next Warning" })
vim.keymap.set("n", "[w", diagnostic_goto(false, "WARN"), { desc = "Prev Warning" })
-- Close Tab
vim.keymap.set("n", "<leader>xt", "<cmd>tabclose<cr>", { desc = "Close current tab" })