From fb82a59b4da07a37c4329d70a7e65431c72281cd Mon Sep 17 00:00:00 2001
From: Bradley Small <vc.Bradley.Small@lowes.com>
Date: Wed, 30 Oct 2019 11:17:01 -0400
Subject: [PATCH] adding pyls to ale for LSP features

---
 .gitignore               | 1 +
 .vim/ftplugin/python.vim | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index b39d943..b650840 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,4 @@
 .vim/swap
 .vim/undo
 .directory
+.vim/pack/plugins/start/ale/tags-te
diff --git a/.vim/ftplugin/python.vim b/.vim/ftplugin/python.vim
index dc77c97..f507128 100644
--- a/.vim/ftplugin/python.vim
+++ b/.vim/ftplugin/python.vim
@@ -41,7 +41,7 @@ let python_highlight_all=1
 " let g:syntastic_python_checkers = ['flake8', 'frosted', 'mypy', 'pep257', 'pep8', 'prospector', 'pycodestyle', 'pydocstyle', 'pyflakes', 'pylint3', 'python3']
 "
 " Check Python files with flake8 and pylint.
-let b:ale_linters = ['flake8', 'pylint']
+let b:ale_linters = ['flake8', 'pylint', 'pyls']
 " Fix Python files with autopep8 and yapf.
 let b:ale_fixers = ['black', 'autopep8', 'yapf']
 " Disable warnings about trailing whitespace for Python files.
-- 
GitLab