Low Orbit Flux Logo 2 F

VIM for Me

This page contains a few quick fixes that help me with things that annoy me about vim. I might expand this into a full guide or develop it in another direction.

Stop auto indent:

~/.vimrc
:setl noai nocin nosi inde=
noai noautoindent Disables automatic copying of the previous line’s indentation.
nocin nocindent Turns off C-style intelligent indentation.
nosi nosmartindent Disables a simpler indentation helper (less advanced than cindent).
inde= indentexpr= Clears the custom indentation expression.

Stop vim from entering “visual mode” when trying to select text with the mouse:


:set mouse-=a