mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 16:41:43 +05:30
- 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:
@@ -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" })
|
||||
|
||||
@@ -156,6 +156,7 @@ return {
|
||||
{ find = "<ed" },
|
||||
{ find = "The only match" },
|
||||
{ find = "DB:" },
|
||||
{ find = "cwd:" },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
@@ -2,7 +2,7 @@ return {
|
||||
-- Navigate between NVIM & Tmux splits seamlessly
|
||||
{ "christoomey/vim-tmux-navigator" },
|
||||
|
||||
-- Navigate between NVIM & kitty splits seamlessly
|
||||
-- Navigate between NVIM & kitty splits
|
||||
{
|
||||
"knubie/vim-kitty-navigator",
|
||||
build = "cp ./*.py ~/.config/kitty/",
|
||||
|
||||
Reference in New Issue
Block a user