Skip to content

Commit 5dfcdd1

Browse files
committed
Add a few temporary dev options
1 parent dde7a6b commit 5dfcdd1

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

vimrc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ source ~/.vim/funcs.vim
1313
Bundle 'JazzCore/vundle'
1414
Bundle 'JazzCore/ctrlp-cmatcher'
1515
Bundle 'JazzCore/ultisnips-snippets'
16-
Bundle 'SirVer/ultisnips'
1716
Bundle 'tpope/vim-fugitive'
1817
Bundle 'tpope/vim-surround'
1918
Bundle 'tpope/vim-endwise'
@@ -57,9 +56,12 @@ Bundle 'spiiph/vim-space'
5756
Bundle 'airblade/vim-gitgutter'
5857
Bundle 'terryma/vim-multiple-cursors'
5958
Bundle 'xolox/vim-shell'
59+
Bundle 'SirVer/ultisnips'
6060
"Bundle 'Yggdroot/indentLine'
6161
"Bundle 'kien/rainbow_parentheses'
6262
Bundle 'pydave/AsyncCommand'
63+
"Bundle 'Shougo/neocomplcache'
64+
"Bundle 'JazzCore/neocomplcache-ultisnips'
6365

6466
filetype on " Enable filetype detection
6567
filetype indent on " Enable filetype-specific indenting
@@ -309,6 +311,10 @@ let g:session_autoload = 1
309311
let g:pymode_doc = 0
310312
let g:pymode_run = 0
311313
let g:pymode_lint = 0
314+
let g:pymode_lint_signs = 1
315+
"let g:pymode_lint_signs_always_visible = 1
316+
let g:pymode_lint_onfly = 1
317+
let g:pymode_lint_cwindow = 1
312318
let g:pymode_rope = 0
313319
let g:pymode_folding = 0
314320
let g:pymode_options = 0
@@ -355,3 +361,8 @@ let g:indentLine_char = "│"
355361
" ==================== EasyMotion ====================
356362
" maps: <leader> and f,F,e,E,w,W,ge,gE,j,k,n,N,t,T,b,B
357363
let g:EasyMotion_leader_key="<Leader>"
364+
365+
let g:jedi#auto_initialization = 1
366+
let g:jedi#goto_command = "<leader>g"
367+
let g:jedi#get_definition_command = "<leader>d"
368+
let g:jedi#use_tabs_not_buffers = 0

0 commit comments

Comments
 (0)