From 13f5ee6ae6e3589ecbed547c48b8fab670174497 Mon Sep 17 00:00:00 2001 From: ManjaroOne666 Date: Sat, 30 Mar 2019 17:33:39 +0000 Subject: [PATCH] ale pyls enable flake8 configuration --- ftplugin/python.vim | 2 +- vimrc | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/ftplugin/python.vim b/ftplugin/python.vim index d930cdd..8401525 100644 --- a/ftplugin/python.vim +++ b/ftplugin/python.vim @@ -2,7 +2,7 @@ set softtabstop=8 set tabstop=4 set shiftwidth=4 -set textwidth=79 +set textwidth=88 set foldmethod=indent set foldnestmax=1 diff --git a/vimrc b/vimrc index 49982df..a5d2ce2 100644 --- a/vimrc +++ b/vimrc @@ -192,9 +192,8 @@ if g:vimrc_load_dev_plugins let g:ale_python_pyls_config = { \ 'pyls': { -\ 'pycodestyle': { -\ 'enabled': v:false -\ } +\ 'pycodestyle': { 'enabled': v:false }, +\ 'configurationSources': ['flake8'] \ } \ }