Browse Source

readding nerdtree, just because; removed CSApprox because it is consistently fucking the terminal; added auto-pairs to get pair completion

master
Julio Biason 10 years ago
parent
commit
82cfc338ff
  1. 49
      configs/vimrc-generated

49
configs/vimrc-generated

@ -27,7 +27,7 @@ NeoBundleFetch 'Shougo/neobundle.vim'
"***************************************************************************** "*****************************************************************************
"" NeoBundle install packages "" NeoBundle install packages
"***************************************************************************** "*****************************************************************************
" NeoBundle 'scrooloose/nerdtree' NeoBundle 'scrooloose/nerdtree'
NeoBundle 'tpope/vim-commentary' NeoBundle 'tpope/vim-commentary'
NeoBundle 'tpope/vim-fugitive' NeoBundle 'tpope/vim-fugitive'
NeoBundle 'kien/ctrlp.vim' NeoBundle 'kien/ctrlp.vim'
@ -35,7 +35,7 @@ NeoBundle 'bling/vim-airline'
NeoBundle 'airblade/vim-gitgutter' NeoBundle 'airblade/vim-gitgutter'
NeoBundle 'sheerun/vim-polyglot' NeoBundle 'sheerun/vim-polyglot'
NeoBundle 'vim-scripts/grep.vim' NeoBundle 'vim-scripts/grep.vim'
NeoBundle 'vim-scripts/CSApprox' " NeoBundle 'vim-scripts/CSApprox'
"" Snippets "" Snippets
" NeoBundle "MarcWeber/vim-addon-mw-utils" " NeoBundle "MarcWeber/vim-addon-mw-utils"
@ -54,6 +54,7 @@ NeoBundle 'altercation/vim-colors-solarized'
NeoBundle 'w0ng/vim-hybrid' NeoBundle 'w0ng/vim-hybrid'
"" Custom bundles "" Custom bundles
NeoBundle 'jiangmiao/auto-pairs'
"" Python Bundle "" Python Bundle
NeoBundle "davidhalter/jedi-vim" NeoBundle "davidhalter/jedi-vim"
@ -150,26 +151,26 @@ set nocursorline
set guioptions=egmrt set guioptions=egmrt
set gfn=Monospace\ 8 set gfn=Monospace\ 8
if has("gui_running") " if has("gui_running")
if has("gui_mac") || has("gui_macvim") " if has("gui_mac") || has("gui_macvim")
set guifont=Menlo:h12 " set guifont=Menlo:h12
set transparency=7 " set transparency=7
endif " endif
else " else
let g:CSApprox_loaded = 1 " let g:CSApprox_loaded = 1
if $COLORTERM == 'gnome-terminal' " if $COLORTERM == 'gnome-terminal'
set term=xterm-256color " set term=xterm-256color
else " else
if $TERM == 'xterm' " if $TERM == 'xterm'
set term=xterm-256color " set term=xterm-256color
endif " endif
endif " endif
endif " endif
if &term =~ '256color' " if &term =~ '256color'
set t_ut= " set t_ut=
endif " endif
"" Disable the blinking cursor. "" Disable the blinking cursor.
set gcr=a:blinkon0 set gcr=a:blinkon0
@ -382,6 +383,6 @@ let g:javascript_enable_domhtmlcss = 1
"" Include user's local vim config "" Include user's local vim config
if filereadable(expand("~/.vimrc.local")) if filereadable(expand("~/.vim/local.vim"))
source ~/.vimrc.local source ~/.vim/local.vim
endif endif
Loading…
Cancel
Save