Skip to content

Instantly share code, notes, and snippets.

@osdrv
Last active December 18, 2015 12:39
Show Gist options
  • Save osdrv/5784061 to your computer and use it in GitHub Desktop.
Save osdrv/5784061 to your computer and use it in GitHub Desktop.
My current .vimrc
set guifont=Monaco:h14
set bg=dark
set ts=2
set sw=2
set sts=2
set expandtab
set nu nu
set syntax=on
highlight clear
syntax reset
set noeb noeb
set novb novb
set cindent
set smartindent
set autoindent
set tabstop=2
set shiftwidth=2
set cinkeys=0{,0},0),:,0#,!^F,o,O,e
set nocompatible
filetype off
map <F5> :!g++ -o ~/tmp/out % && ~/tmp/out && rm ~/tmp/out <Return>
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'tpope/vim-rails.git'
Bundle 'git://git.wincent.com/command-t.git'
Bundle 'garbas/vim-snipmate'
Bundle 'MarcWeber/vim-addon-mw-utils'
Bundle 'vim-scripts/closetag.vim'
Bundle 'vim-scripts/The-NERD-tree'
Bundle 'jistr/vim-nerdtree-tabs'
Bundle 'vim-scripts/tlib'
Bundle 'rstacruz/sparkup'
Bundle 'Shougo/neocomplcache'
Bundle 'carlhuda/janus'
Bundle 'kchmck/vim-coffee-script'
Bundle 'jnwhiteh/vim-golang'
Bundle 'Lokaltog/vim-distinguished'
Bundle '29decibel/codeschool-vim-theme'
filetype plugin on
filetype plugin indent on
let g:neocomplcache_enable_at_startup = 1
let g:neocomplcache_enable_smart_case = 1
let g:neocomplcache_enable_camel_case_completion = 1
let g:neocomplcache_enable_underbar_completion = 1
let g:neocomplcache_min_syntax_length = 3
inoremap <expr><C-g> neocomplcache#undo_completion()
inoremap <expr><C-l> neocomplcache#complete_common_string()
inoremap <expr><CR> neocomplcache#smart_close_popup() . "\<CR>"
inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
inoremap <expr><C-h> neocomplcache#smart_close_popup()."\<C-h>"
inoremap <expr><BS> neocomplcache#smart_close_popup()."\<C-h>"
inoremap <expr><C-y> neocomplcache#close_popup()
inoremap <expr><C-e> neocomplcache#cancel_popup()
autocmd FileType css setlocal omnifunc=csscomplete#CompleteCSS
autocmd FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
autocmd FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
autocmd FileType python setlocal omnifunc=pythoncomplete#Complete
autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
if !exists('g:neocomplcache_omni_patterns')
let g:neocomplcache_omni_patterns = {}
endif
let g:neocomplcache_omni_patterns.ruby = '[^. *\t]\.\w*\|\h\w*::'
"autocmd FileType ruby setlocal omnifunc=rubycomplete#Complete
let g:neocomplcache_omni_patterns.php = '[^. \t]->\h\w*\|\h\w*::'
let g:neocomplcache_omni_patterns.c = '\%(\.\|->\)\h\w*'
let g:neocomplcache_omni_patterns.cpp = '\h\w*\%(\.\|->\)\h\w*\|\h\w*::'
let g:nerdtree_tabs_open_on_gui_startup = 1
let g:nerdtree_tabs_open_on_console_startup = 1
color codeschool
set guifont=Monaco:h14
let g:NERDTreeWinPos = "right"
set guioptions-=T " Removes top toolbar
set guioptions-=r " Removes right hand scroll bar
set go-=L " Removes left hand scroll bar
autocmd User Rails let b:surround_{char2nr('-')} = "<% \r %>" " displays <% %> correctly
:set cpoptions+=$ " puts a $ marker for the end of words/lines in cw/c$ commands
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment