error signs

This commit is contained in:
ManjaroOne666 2018-11-22 13:21:18 +00:00
parent e2f70dd7eb
commit f94944d6ab
1 changed files with 6 additions and 4 deletions

10
vimrc
View File

@ -25,6 +25,8 @@ if !has('nvim')
let g:ale_linters = {'scss': ['stylelint'], 'javascript': [], 'php':['php'], 'html':['htmlhint'], 'python': [], 'vue': []} 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_html_htmlhint_options = '-c ~/.htmlhintrc --format=unix'
let g:ale_fixers = {'javascript': ['eslint']} let g:ale_fixers = {'javascript': ['eslint']}
let g:ale_sign_error = '▷'
let g:ale_sign_warning = '▷'
"}}} "}}}
" #coc.nvim{{{ " #coc.nvim{{{
@ -349,10 +351,10 @@ let g:mta_filetypes = {
Plug 'prabirshrestha/vim-lsp' Plug 'prabirshrestha/vim-lsp'
let g:lsp_signs_enabled = 1 let g:lsp_signs_enabled = 1
let g:lsp_signs_error = {'text': '>>'} let g:lsp_signs_error = {'text': ''}
let g:lsp_signs_warning = {'text': '>'} let g:lsp_signs_warning = {'text': ''}
let g:lsp_signs_information = {'text': '--'} let g:lsp_signs_information = {'text': ''}
let g:lsp_signs_hint = {'text': '--'} let g:lsp_signs_hint = {'text': ''}
let g:lsp_diagnostics_echo_cursor = 1 let g:lsp_diagnostics_echo_cursor = 1
let g:lsp_diagnostics_echo_delay = 0 let g:lsp_diagnostics_echo_delay = 0
nnoremap \l :cclose<CR>:LspDocumentDiagnostics<cr> nnoremap \l :cclose<CR>:LspDocumentDiagnostics<cr>