⚙️ config(nvim): move some keymaps
This commit is contained in:
parent
4563c358fb
commit
2da357f367
1 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,10 @@ map("n", "<leader>lr", function() vim.fn.system({ "xdg-open", "https://github.co
|
|||
map("n", "<leader>le", "<cmd>LazyExtras<cr>", { desc = "Extras" })
|
||||
map("n", "<leader>lc", function() Util.news.changelog() end, { desc = "LazyVim Changelog" })
|
||||
-- stylua: ignore end
|
||||
|
||||
-- Disable LazyVim bindings
|
||||
map("n", "<leader>L", "<Nop>")
|
||||
map("n", "<leader>fT", "<Nop>")
|
||||
|
||||
-- Identation
|
||||
map("n", "<", "<<", { desc = "Deindent" })
|
||||
|
@ -29,9 +32,6 @@ map("n", ">", ">>", { desc = "Indent" })
|
|||
-- Save without formatting
|
||||
map("n", "<A-s>", "<cmd>noautocmd w<CR>", { desc = "Save without formatting" })
|
||||
|
||||
-- Disable lazyterminal keymap
|
||||
map("n", "<leader>fT", "<Nop>")
|
||||
|
||||
-- Cursor navigation on insert mode
|
||||
map("i", "<M-h>", "<left>", { desc = "Move cursor left" })
|
||||
map("i", "<M-l>", "<right>", { desc = "Move cursor left" })
|
||||
|
|
Loading…
Add table
Reference in a new issue