From d0e7690e43a02aa013327fdf64fbce1f1ddb3576 Mon Sep 17 00:00:00 2001 From: MorganGeek Date: Mon, 7 Jun 2021 10:01:02 +0200 Subject: [PATCH] disable fixers in vim config --- dot_vimrc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dot_vimrc b/dot_vimrc index 52850ed..c0194a8 100644 --- a/dot_vimrc +++ b/dot_vimrc @@ -113,19 +113,19 @@ let g:ale_completion_enabled = 1 let g:ale_open_list = 1 "\ 'yaml': ['prettier'], -let g:ale_fixers = { -\ '*': ['remove_trailing_lines', 'trim_whitespace'], -\ 'python': ['black'], -\ 'rust': ['rustfmt'], -\ 'Jenkinsfile': ['checkci'], -\ 'sh' : ['shfmt'], -\ 'zsh' : ['shfmt'], -\} +"let g:ale_fixers = { +"\ '*': ['remove_trailing_lines', 'trim_whitespace'], +"\ 'python': ['black'], +"\ 'rust': ['rustfmt'], +"\ 'Jenkinsfile': ['checkci'], +"\ 'sh' : ['shfmt'], +"\ 'zsh' : ['shfmt'], +"\} let g:ale_linters = {'zsh': ['shellcheck'], 'text': ['writegood', 'proselint', 'alex']} " when running at every change you may want to disable quickfix -let g:prettier#quickfix_enabled = 1 +let g:prettier#quickfix_enabled = 0 let g:prettier#quickfix_auto_focus = 1 let g:prettier#config#print_width = '30' let g:prettier#exec_cmd_path = "/usr/local/bin/prettier"