From c3210ca7ae98eaff5cde5fc31a2bb6fd3074df05 Mon Sep 17 00:00:00 2001 From: Marcel Schneider Date: Fri, 23 Nov 2018 10:40:57 +0100 Subject: [PATCH] Add rust and python --- init.vim | 5 +++++ vim/ftplugin/python.vim | 3 +++ 2 files changed, 8 insertions(+) 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 = ''