diff options
author | Aaron LI <aly@aaronly.me> | 2018-02-03 16:28:54 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-02-03 16:28:54 +0800 |
commit | e0499fc82abc85afc89399876553f89a9cba3189 (patch) | |
tree | 18854a4b2951f5e8f247edc9c8784acc57cbae26 /_nexrc | |
parent | e94e3815b7db9a6f0c82f9f0e3e9e89ed4b9e484 (diff) | |
download | dotfiles-e0499fc82abc85afc89399876553f89a9cba3189.tar.bz2 |
freebsd: move nexrc out, and delete login_conf & mpdconf
Diffstat (limited to '_nexrc')
-rw-r--r-- | _nexrc | 50 |
1 files changed, 50 insertions, 0 deletions
@@ -0,0 +1,50 @@ +" +" ~/.nexrc +" for nvi, default vi on BSDs +" +" Credits: http://rubenschade.com/dotfiles/.nexrc +" +" Aaron LI +" Created: 2011-06-20 +" Updated: 2012-02-24 +" +" nvi doesn't like inline comments or empty lines, be warned! +" +" GENERAL SETTINGS +set extended +set magic +set searchincr +set showmatch +set matchtime=3 +set showmode +set ignorecase +set wrapscan +" +" Command-line history and completion +" +" USE <TAB> +set cedit=\ +set filec=\ +" USE <ESC> +"set cedit= +"set filec= +" +" I LIKE 4 SPACE INDENTATION +set autoindent +set shiftwidth=4 +set tabstop=8 +" +" TELL ME WHEN I DO SOMETHING STUPID +set errorbells +set flash +set verbose +" +" SHOW LINE NUMBERS, COLUMN/ROW POSITION +set number +set ruler +" +" KEY MAPPINGS +map gg 1G +" +" +" vim: set ts=8 sw=4 tw=78 fenc=utf-8 ft=vim: # |