diff --git a/README.md b/README.md index a0173ba..b5a6a61 100644 --- a/README.md +++ b/README.md @@ -238,6 +238,15 @@ let g:ale_sign_error = '>>' let g:ale_sign_warning = '--' ``` +ALE sets some background colors automatically for warnings and errors +in the sign gutter, with the names `ALEErrorSign` and `ALEWarningSign`. +These colors can be customised, or even removed completely: + +```vim +highlight clear ALEErrorSign +highlight clear ALEWarningSign +``` + ### 4.iv. How can I show errors or warnings in my statusline?