Skip to content

Commit

Permalink
Add vim-session dep bundle. Try Jedi. Tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramiro Morales committed Sep 3, 2013
1 parent 9bbc928 commit 94a6111
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion _vimrc
Expand Up @@ -82,6 +82,7 @@ au Syntax * RainbowParenthesesLoadRound
au Syntax * RainbowParenthesesLoadSquare
au Syntax * RainbowParenthesesLoadBraces

Bundle 'xolox/vim-misc'
Bundle 'xolox/vim-session'
Bundle 'tpope/vim-surround'
Bundle 'vim-pandoc/vim-pandoc'
Expand All @@ -108,6 +109,7 @@ Bundle 'michaeljsmith/vim-indent-object'
Bundle 'Townk/vim-autoclose'
Bundle 'bogado/file-line'
Bundle 'pangloss/vim-javascript'
Bundle 'davidhalter/jedi-vim'

" vim-scripts repos
Bundle 'VOoM'
Expand Down Expand Up @@ -233,6 +235,8 @@ endif
" No toolbar
set guioptions-=T

"colorscheme desert256

set virtualedit=all

set incsearch " do incremental searching
Expand All @@ -246,7 +250,10 @@ set cursorline
"set cursorcolumn

" set visualbell
set errorbells
"set errorbells
" don't bell or blink
set noerrorbells
set vb t_vb=
set nowrap
set scrolloff=2
set wildmode=longest,list,full
Expand Down Expand Up @@ -376,6 +383,9 @@ else
au! Syntax tjp so ~/.vim/syntax/tjp.vim
endif

" Don't warn on missing docstrings
let g:syntastic_python_pylint_args='-d C0111'

" Source a local configuration file if available.
if filereadable(expand("~/.vimrc.local"))
source ~/.vimrc.local
Expand Down

0 comments on commit 94a6111

Please sign in to comment.