Last active
October 10, 2015 19:38
-
-
Save tachesimazzoca/3741191 to your computer and use it in GitHub Desktop.
.vimrc #vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set directory=$HOME/.vim/swap | |
set nobackup | |
set number | |
set expandtab | |
set tabstop=2 | |
set softtabstop=2 | |
set shiftwidth=2 | |
"set foldmethod=marker | |
set nohlsearch | |
set list | |
set listchars=tab:*- | |
autocmd FileType * set formatoptions-=ro | |
" | |
" % ctags -f /path/to/tags -R /path/to/src/dir | |
" | |
set tags=.tags;$HOME,$HOME/.vim/tags | |
set complete=.,w,b,u,t,i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment