Selaa lähdekoodia

Add simple .vimrc for servers

Viktor Grahn 4 vuotta sitten
vanhempi
commit
1ff574097d
1 muutettua tiedostoa jossa 35 lisäystä ja 0 poistoa
  1. 35 0
      .vimrc-simple

+ 35 - 0
.vimrc-simple

@@ -0,0 +1,35 @@
+""""""""""""""""""""""""""""""""""""""""""""""""
+" Anton Lindstrom's .vimrc
+" http://code.antonlindstrom.com/.vimrc
+""""""""""""""""""""""""""""""""""""""""""""""""
+		
+" Getting rid of vi bugs and turns syntax highlighting on
+set nocompatible 
+syntax on
+
+" History
+set history=1000
+
+" Indent
+set autoindent
+set smartindent
+set tabstop=2
+set shiftwidth=2
+set shiftround
+set expandtab
+set nowrap
+set preserveindent
+set pastetoggle=<F12> "Press <F12> when paste-alot
+
+" VIM UI
+filetype on
+set showmatch
+set ruler
+set incsearch
+set backspace=2
+set whichwrap+=<,>,[,],h,l 
+set shortmess=atI
+set showmode
+set showcmd
+
+filetype plugin indent on