Skip to content

Instantly share code, notes, and snippets.

@stupend
Created November 19, 2012 16:20
Show Gist options
  • Save stupend/4111586 to your computer and use it in GitHub Desktop.
Save stupend/4111586 to your computer and use it in GitHub Desktop.
My Vim config file
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'python.vim'
Bundle 'taglist.vim'
Bundle 'TWiki-Syntax'
Bundle 'Markdown'
Bundle 'OmniCppComplete'
Bundle 'scrooloose/nerdtree'
colorscheme desert
nnoremap <silent> <F5> :NERDTree<CR>
" next tab
map <F7> :tabn
" previous tab
map <F8> :tabp
" Close Tab abd save
map <F9> ZZ
map <F3> :TlistOpen <CR>
map <C-F12> :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR>
set wildignore+=*/tmp/*,*.so,*.swp,*.zip
"colorscheme wombat256mod
set showmode
set nobackup
filetype plugin on
set fileencoding=utf-8
set encoding=utf-8
set expandtab
set ai
set ts=4
set sts=4
set sw=4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment