From 547cd13442fcfdb6a5c690a57d3658807956e8f6 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 13 Mar 2019 16:38:27 -0700 Subject: [PATCH] ENH: Add Ale/python support --- vimrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vimrc b/vimrc index b7a0748..b873011 100644 --- a/vimrc +++ b/vimrc @@ -1,3 +1,8 @@ +let g:ale_completion_enabled = 1 +let g:ale_linters = { +\ 'python': ['flake8', 'pyls'], +\} + call plug#begin() " Color/theme integration Plug 'danielwe/base16-vim' @@ -37,6 +42,8 @@ call plug#begin() Plug 'vimwiki/vimwiki' " typescript syntax highlighting Plug 'leafgarland/typescript-vim' + " lsp + Plug 'w0rp/ale' call plug#end() set t_Co=256