diff --git a/vimrc b/vimrc index bead89b..3de05b6 100644 --- a/vimrc +++ b/vimrc @@ -25,6 +25,8 @@ if !has('nvim') let g:ale_linters = {'scss': ['stylelint'], 'javascript': [], 'php':['php'], 'html':['htmlhint'], 'python': [], 'vue': []} let g:ale_html_htmlhint_options = '-c ~/.htmlhintrc --format=unix' let g:ale_fixers = {'javascript': ['eslint']} + let g:ale_sign_error = '▷' + let g:ale_sign_warning = '▷' "}}} " #coc.nvim{{{ @@ -349,10 +351,10 @@ let g:mta_filetypes = { Plug 'prabirshrestha/vim-lsp' let g:lsp_signs_enabled = 1 - let g:lsp_signs_error = {'text': '>>'} - let g:lsp_signs_warning = {'text': '>'} - let g:lsp_signs_information = {'text': '--'} - let g:lsp_signs_hint = {'text': '--'} + let g:lsp_signs_error = {'text': '▶'} + let g:lsp_signs_warning = {'text': '▶'} + let g:lsp_signs_information = {'text': '▶'} + let g:lsp_signs_hint = {'text': '▶'} let g:lsp_diagnostics_echo_cursor = 1 let g:lsp_diagnostics_echo_delay = 0 nnoremap \l :cclose:LspDocumentDiagnostics