-- Keymaps are automatically loaded on the VeryLazy event -- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua vim.keymap.set( "n", "]", ':call append(line("."), repeat([""], v:count1))', { silent = true, desc = "Add line below" } ) vim.keymap.set( "n", "[", ':call append(line(".")-1, repeat([""], v:count1))', { silent = true, desc = "Add line above" } )