Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix ale highlights #88

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion colors/iceberg.vim
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"
" File: iceberg.vim
" Maintainer: cocopon <[email protected]>
" Modified: 2020-12-25 11:57+0900
" Modified: 2021-02-20 19:41-0800
" License: MIT


Expand Down Expand Up @@ -95,6 +95,9 @@ if &background == 'light'
hi ALEWarningSign ctermbg=253 ctermfg=130 guibg=#dcdfe7 guifg=#c57339
hi ALEVirtualTextError ctermfg=125 guifg=#cc517a
hi ALEVirtualTextWarning ctermfg=130 guifg=#c57339
hi ALEInfo cterm=underline ctermbg=NONE ctermfg=NONE gui=undercurl guibg=NONE guifg=NONE term=underline
hi ALEWarning cterm=underline ctermbg=NONE ctermfg=NONE gui=undercurl guibg=NONE guifg=NONE term=underline
hi ALEError cterm=underline ctermbg=NONE ctermfg=NONE gui=undercurl guibg=NONE guifg=NONE term=underline
hi CtrlPMode1 ctermbg=247 ctermfg=252 guibg=#9fa6c0 guifg=#e8e9ec
hi EasyMotionShade ctermfg=250 guifg=#bbbecd
hi EasyMotionTarget ctermfg=64 guifg=#668e3d
Expand Down Expand Up @@ -210,6 +213,9 @@ else
hi ALEWarningSign ctermbg=235 ctermfg=216 guibg=#1e2132 guifg=#e2a478
hi ALEVirtualTextError ctermfg=203 guifg=#e27878
hi ALEVirtualTextWarning ctermfg=216 guifg=#e2a478
hi ALEInfo cterm=underline ctermbg=NONE ctermfg=NONE gui=undercurl guibg=NONE guifg=NONE term=underline
hi ALEWarning cterm=underline ctermbg=NONE ctermfg=NONE gui=undercurl guibg=NONE guifg=NONE term=underline
hi ALEError cterm=underline ctermbg=NONE ctermfg=NONE gui=undercurl guibg=NONE guifg=NONE term=underline
hi CtrlPMode1 ctermbg=236 ctermfg=242 guibg=#2e313f guifg=#6b7089
hi EasyMotionShade ctermfg=239 guifg=#3d425b
hi EasyMotionTarget ctermfg=150 guifg=#b4be82
Expand Down
30 changes: 30 additions & 0 deletions src/iceberg.vim
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,36 @@ function! s:create_colors(palette) abort
\ 'ctermfg': c.orange,
\ 'guifg': g.orange,
\ }))
call extend(rules, pgmnt#hi#group(
\ 'ALEInfo', {
\ 'cterm': 'underline',
\ 'ctermbg': 'NONE',
\ 'ctermfg': 'NONE',
\ 'gui': 'undercurl',
\ 'guibg': 'NONE',
\ 'guifg': 'NONE',
\ 'term': 'underline',
\ }))
call extend(rules, pgmnt#hi#group(
\ 'ALEWarning', {
\ 'cterm': 'underline',
\ 'ctermbg': 'NONE',
\ 'ctermfg': 'NONE',
\ 'gui': 'undercurl',
\ 'guibg': 'NONE',
\ 'guifg': 'NONE',
\ 'term': 'underline',
\ }))
call extend(rules, pgmnt#hi#group(
\ 'ALEError', {
\ 'cterm': 'underline',
\ 'ctermbg': 'NONE',
\ 'ctermfg': 'NONE',
\ 'gui': 'undercurl',
\ 'guibg': 'NONE',
\ 'guifg': 'NONE',
\ 'term': 'underline',
\ }))

" [CtrlP](https://github.com/ctrlpvim/ctrlp.vim)
call extend(rules, pgmnt#hi#group(
Expand Down