— You Are At The Archives for the server Tag —

Fixing Vi and Arrows in Insert Mode

01.20.10 // Technology // (0) // 24 views

Recently I moved one of my sites onto another server, different installation. I noticed when i was working in Vi in insert mode my arrow keys would insert their values instead of navigating around the text. To fix this:

Make a new file in your home directory valled .vimrc
Inside it put in:
:set backspace=indent,eol,start
:set term=builtin_ansi

Now that global [...]