lunarvim

T.I.L.

Edit multiple line on Vim

How to edit multiple lines at once on vim/neovim/lunarvim

For edit multiple lines, click CTRL+V for init block selection. Click J or K for select the lines, or use arrows up/down.

Now with lines selected, press SHIFT+I for insert on all lines, or SHIFT+A for insert on the end of all lines.

ref: https://vimtricks.com/p/edit-multiple-lines-at-once-in-vim/

Disable CMP on LunarVim

How to disable completitions on specific LunarVim session

You can disable cmp with inline Lua command, invoked by :lua command.

:lua require('cmp').setup({ enabled = false })