feat(nvim): append / prepend newline
This commit is contained in:
parent
1f64a070f9
commit
48de9bce71
1 changed files with 5 additions and 0 deletions
|
@ -5,6 +5,10 @@ local map = vim.keymap.set
|
|||
map("i", "jk", "<cmd>noh<cr><Esc>", { silent = true })
|
||||
map({"n", "x"}, "<Esc>", "<cmd>noh<cr><Esc>", { silent = true })
|
||||
|
||||
-- Append and Prepend Newline
|
||||
map("n", "<Leader>[", "<cmd>call append(line('.')-1, '')<CR>", { desc = "Prepend Newline"})
|
||||
map("n", "<Leader>]", "<cmd>call append(line('.'), '')<CR>", { desc = "Append Newline"})
|
||||
|
||||
----
|
||||
-- Movements
|
||||
----
|
||||
|
@ -37,6 +41,7 @@ map("n", "<leader>g", "<cmd>lua _lazygit_toggle()<CR>", {noremap = true, silent
|
|||
|
||||
-- Undotree
|
||||
map("n", "<leader>fu", "<cmd>Telescope undo<cr>")
|
||||
|
||||
----
|
||||
-- Cool Macros
|
||||
----
|
||||
|
|
Loading…
Reference in a new issue