dotfiles/.vim/ftdetect/ale.vim

15 lines
383 B
VimL
Raw Normal View History

let g:ale_completion_enabled = 1
let g:ale_sign_error = "✗"
let g:ale_sign_warning = "⚠"
" Enable warnings about trailing whitespace for all files.
let b:ale_warn_about_trailing_whitespace = 1
2019-08-26 02:59:34 +02:00
nmap <leader>e :ALEDetail <cr>
" ALE colors
highlight ALEWarning ctermbg=Yellow
highlight ALEWarning ctermfg=Black
highlight ALEError ctermbg=DarkRed
highlight ALEError ctermfg=White