🎹 Keybinds Update
- Finally move all keymappings into which-key - Change to MunsMan/kitty-navigator.nvim - Change mapping for switching window/split to Ctrl+Shift+<vim-motion> - Add some new mappings like 'gt' for LazyGit Terminal split
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
return {
|
||||
"jghauser/kitty-runner.nvim",
|
||||
cond = function() -- Using Kitty
|
||||
local term = os.getenv("TERM")
|
||||
return term and string.find(term, "kitty")
|
||||
local term = os.getenv("TERM") or ""
|
||||
local kit = string.find(term, "kitty")
|
||||
return kit ~= nil
|
||||
end,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user