dotfiles/.vim/ftdetect/ale.vim

17 lines
425 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
2020-06-16 21:38:14 +02:00
let g:airline#extensions#ale#enabled = 1