error signs
This commit is contained in:
parent
e2f70dd7eb
commit
f94944d6ab
10
vimrc
10
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<CR>:LspDocumentDiagnostics<cr>
|
||||
|
|
Loading…
Reference in New Issue