diff options
author | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-22 02:17:33 +0200 |
---|---|---|
committer | Felix Richter <Felix.Richter@syntax-fehler.de> | 2011-05-22 02:17:33 +0200 |
commit | faf725402cd589173b16152c42e5e48965e3999e (patch) | |
tree | 134babeef7fe1c8f1445fef2804e459d7ffab25d /root | |
parent | 4f3b31fd611de21d75b0a465b438577632f47ee0 (diff) | |
parent | 951d398e20fdb778289e7dff2350594503dc300f (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'root')
-rw-r--r-- | root/.vimrc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/root/.vimrc b/root/.vimrc new file mode 100644 index 00000000..22bbf99d --- /dev/null +++ b/root/.vimrc @@ -0,0 +1,31 @@ +" do the right thing all the time +" +" Colors and stuff +syntax on +set background=dark + + + + +" searching +set hlsearch +set showmatch +set ignorecase +set incsearch +set wildignore=*.o,*.obj,*.bak,*.pyc + +" tabbing +set tabstop=2 +set et +set sw=2 +set smarttab +set autoindent + +" vim magic +filetype plugin indent on + + +" fuck you, help command +inoremap <F1> <ESC> +nnoremap <F1> <ESC> +vnoremap <F1> <ESC> |