aboutsummaryrefslogtreecommitdiffstats
path: root/.vimrc
blob: d7f6bd20b7577b24197ee1bca69a289b032204c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
" to enable per-project .vimrc config add this to your .vimrc
" " allow per-project .vimrc
" set exrc
" " but disable autocmd in those files - for security reasons
" " this is VERY IMPORTANT
" set secure

set encoding=utf-8      " utf-8 for the win!
set tabstop=4           " tab character is 4 spaces wide
set shiftwidth=4        " hitting ">>" will move line by 4 spaces
set expandtab           " produce spaces when <tab> is hit
set softtabstop=4       " when <tab> is hit, produce 4 spaces