From ff1a8aa7cf7a892fa7a6c3fbae9c0e3407e7dabd Mon Sep 17 00:00:00 2001 From: "Bradley M. Small" <bradley_small@hotmail.com> Date: Fri, 15 Nov 2019 19:12:03 -0500 Subject: [PATCH] getting more linters setup --- .vim/coc-settings.json | 9 +++++++-- .vimrc | 2 ++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.vim/coc-settings.json b/.vim/coc-settings.json index ee03dc2..5a5f4ed 100644 --- a/.vim/coc-settings.json +++ b/.vim/coc-settings.json @@ -1,7 +1,12 @@ { + "python.formatting.provider": "black", "python.linting.enabled": true, "python.linting.flake8Enabled": true, + "python.linting.mypyEnabled": true, + "python.linting.prospectorEnabled": true, "python.linting.pydocstyleEnabled": true, - "python.linting.pylintEnabled": true, - "python.formatting.provider": "black" + "python.linting.pep8Enabled": true, + "python.linting.pylamaEnabled": true, + "python.linting.banditEnabled": true, + "python.linting.pylintEnabled": true } diff --git a/.vimrc b/.vimrc index d4a66ce..a350015 100644 --- a/.vimrc +++ b/.vimrc @@ -18,6 +18,8 @@ Plug 'tpope/vim-rhubarb' Plug 'vim-scripts/loremipsum' Plug 'tpope/vim-surround' +Plug 'scrooloose/nerdtree' +Plug 'Xuyuanp/nerdtree-git-plugin' " Plug 'tmhedberg/SimpylFold' " Plug 'vimwiki/vimwiki' -- GitLab