Check Out The New Experts Exchange

by Steve Email

A More Standard VIM

by Steve Email

As most of us Slackers know, Slackware ships with Elvis VIM as the default link to vi. I personally do not like Elvis VIM and for those who don’t as well, feel free to follow these steps to make vi more friendly.

Code:

ln -sf /usr/bin/vim /usr/bin/vi

Next, because Patrick uses the example vimrc file for the system default, it sets some mouse settings. These settings require you to press Shift while copying and pasting text. To me this is very annoying.

Code:

vi /usr/share/vim/vimrc
:%s/mouse=a/mouse=""/
:wq