From c4940f0dfa20b7cd960713f127ded8603f047094 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Fri, 12 Jan 2018 01:09:13 +0100 Subject: Fixed nerd font error symbols for ale --- vimrc-full | 52 ++++++++++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 24 deletions(-) diff --git a/vimrc-full b/vimrc-full index 6ff6d33..7c7f1cc 100644 --- a/vimrc-full +++ b/vimrc-full @@ -891,30 +891,34 @@ if has("python") " SYNTASTIC: ========================================================================================================= - if has('nvim') - Plug 'w0rp/ale' - else - - - Plug 'scrooloose/syntastic' - set statusline+=%#warningmsg# - set statusline+=%{SyntasticStatuslineFlag()} - let g:LatexBox_latexmk_preview_continuously = 1 - let g:LatexBox_viewer = "evince" - let g:syntastic_always_populate_loc_list = 1 - let g:syntastic_auto_loc_list = 0 - let g:syntastic_check_on_open = 1 - let g:syntastic_check_on_wq = 0 - " let g:syntastic_quiet_messages = {"type":"style"} - " - " E221: multiple spaces before Operator - let g:syntastic_python_flake8_args = '--max-complexity=10 --max-line-length=120 --exclude venv --doctests --exit-zero --ignore=E221' - " filter ( = do not display) style/formatting errors and warnings - let g:syntastic_error_symbol = '✖' - let g:syntastic_style_error_symbol = '✗' - let g:syntastic_warning_symbol = '➔' - let g:syntastic_style_warning_symbol = '≈' - endif + if has('nvim') + Plug 'w0rp/ale' + let g:ale_sign_error = '' + let g:ale_sign_style_error = '' + let g:ale_sign_info = '' + let ale_sign_warning = '' + else + + + Plug 'scrooloose/syntastic' + set statusline+=%#warningmsg# + set statusline+=%{SyntasticStatuslineFlag()} + let g:LatexBox_latexmk_preview_continuously = 1 + let g:LatexBox_viewer = "evince" + let g:syntastic_always_populate_loc_list = 1 + let g:syntastic_auto_loc_list = 0 + let g:syntastic_check_on_open = 1 + let g:syntastic_check_on_wq = 0 + " let g:syntastic_quiet_messages = {"type":"style"} + " + " E221: multiple spaces before Operator + let g:syntastic_python_flake8_args = '--max-complexity=10 --max-line-length=120 --exclude venv --doctests --exit-zero --ignore=E221' + " filter ( = do not display) style/formatting errors and warnings + let g:syntastic_error_symbol = '✖' + let g:syntastic_style_error_symbol = '✗' + let g:syntastic_warning_symbol = '➔' + let g:syntastic_style_warning_symbol = '≈' + endif " JEDI: ============================================================================================================== Plug 'davidhalter/jedi-vim' " jedi gets used to display python function signatures -- cgit v1.2.3