⚙️ config(nvim): keymaps for going to the first and last character of the current line
This commit is contained in:
parent
ecc31d895a
commit
396cc02d68
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,8 @@ map("n", "<leader>cif", "<cmd>LazyFormatInfo<cr>", { desc = "Formatting" })
|
|||
map("n", "<leader>cir", "<cmd>LazyRoot<cr>", { desc = "Root" })
|
||||
map("n", "<leader>cie", "<cmd>LazyExtras<cr>", { desc = "Extras" })
|
||||
|
||||
map("n", "<a-h>", "_", { desc = "First character of Line" })
|
||||
map("n", "<a-l>", "$", { desc = "Last character of Line" })
|
||||
map("n", "<c-,>", "_", { desc = "First character of Line" })
|
||||
map("n", "<c-.>", "$", { desc = "Last character of Line" })
|
||||
|
||||
-- Copy whole text to clipboard
|
||||
map("n", "<C-c>", ":%y+<CR>")
|
||||
|
|
Loading…
Add table
Reference in a new issue