rice

rei with the taste
git clone https://s.sonu.ch/~rei/rice.git
Log | Files | Refs | README

init.vim (679B)


      1 set nocompatible
      2 set bs=2
      3 set tw=72
      4 set cindent
      5 set tabstop=4
      6 set shiftwidth=4
      7 
      8 set mouse=a
      9 
     10 set nowrapscan
     11 
     12 set showmatch
     13 set showmode
     14 set uc=0
     15 " This was causing trouble with the del key in many systems
     16 " set t_kD=^?
     17 map ^H X
     18 map \e[3~ x
     19 set mousehide
     20 set hlsearch
     21 let c_comment_strings=1
     22 
     23 " Stop vim autowrapping
     24 set wrap linebreak textwidth=0 showbreak=>>
     25 
     26 " Color for xiterm, rxvt, nxterm, color-xterm :
     27 if has("terminfo")
     28 set t_Co=8
     29 set t_Sf=\e[3%p1%dm
     30 set t_Sb=\e[4%p1%dm
     31 else
     32 set t_Co=8
     33 set t_Sf=\e[3%dm
     34 set t_Sb=\e[4%dm
     35 endif
     36 
     37 colorscheme elflord
     38 
     39 syntax on
     40 
     41 autocmd FileType crontab :set backupcopy=yes
     42 autocmd FileType crontab :set nobackup
     43 
     44 set number
     45 set cursorline