feat(nvim): append / prepend newline

This commit is contained in:
stitchy 2025-03-01 08:16:56 +00:00
parent 1f64a070f9
commit 48de9bce71
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8

View file

@ -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
----