diff --git a/init.vim b/init.vim index 47fc02b..8b53155 100644 --- a/init.vim +++ b/init.vim @@ -93,6 +93,7 @@ Plug 'lumiliet/vim-twig', { 'for': [ 'php', 'html' ] } " Twig templates " Python{{{ Plug 'davidhalter/jedi-vim', { 'for': 'python', 'do': 'pip install jedi' } Plug 'zchee/deoplete-jedi', { 'for': 'python' } +Plug 'python-mode/python-mode', { 'for': 'python', 'branch': 'develop' } "}}} " Java{{{ @@ -103,6 +104,10 @@ Plug 'artur-shaik/vim-javacomplete2', { 'for': 'java' } Plug 'vim-scripts/mips.vim' "}}} +" Rust {{{ +Plug 'sebastianmarkow/deoplete-rust', {'for': 'rust' } +"}}} + " All of your Plugins must be added before the following line call plug#end() " required filetype plugin indent on " required diff --git a/vim/ftplugin/python.vim b/vim/ftplugin/python.vim index c1436ea..0bb6bee 100644 --- a/vim/ftplugin/python.vim +++ b/vim/ftplugin/python.vim @@ -5,3 +5,6 @@ if getline(1) =~# '^#!.*python3\>' let syntastic_python_python_exec="python3" endif endif + +let g:ale_fixers['python'] = ['autopep8'] +let g:pymode_run_bind = ''