X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=states%2Fvim%2Ffiles%2Fvimrc;h=b1090de1dc8bf584df64b377efcdf692e0e7e1b4;hb=HEAD;hp=899f85f16ca3b6c6dd09b4ac717eb9ed6dbb5c38;hpb=e9a23a9c161e1db5976a8dd71dbc8a1613cb138d;p=max%2Fsaltfiles.git diff --git a/states/vim/files/vimrc b/states/vim/files/vimrc index 899f85f..b1090de 100644 --- a/states/vim/files/vimrc +++ b/states/vim/files/vimrc @@ -35,6 +35,7 @@ Plugin 'pangloss/vim-javascript' Plugin 'itspriddle/vim-shellcheck' Plugin 'vimwiki/vimwiki' Plugin 'dense-analysis/ale' +Plugin 'Shougo/deoplete.nvim' " All of your Plugins must be added before the following line call vundle#end() " required @@ -56,7 +57,11 @@ set tabstop=4 set relativenumber set number -let g:ale_linters = {'python': ['flake8']} +call deoplete#custom#option('sources', {'_': ['ale',],}) +let g:ale_completion_enabled = 1 +set omnifunc=ale#completion#OmniFunc +let g:ale_linters = {'python': ['flake8', 'jedils']} +let g:ale_python_flake8_options = '--max-line-length=88' let g:html_indent_inctags = "html,body,head,tbody" let g:indentLine_color_term = 5