Skip to content

Commit

Permalink
v 1.4.3
Browse files Browse the repository at this point in the history
Better fzf support + *Msg colors edited
  • Loading branch information
lighthaus-theme committed Apr 6, 2021
1 parent dcb49b2 commit 32ad5c3
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ It comes with support for the following popular plugins:
- [beacon](https://github.com/DanilaMihailov/beacon.nvim)
- [coc](https://github.com/neoclide/coc.nvim)
- [fugitive](https://github.com/tpope/vim-fugitive)
- [fzf](https://github.com/junegunn/fzf)
- [gitgutter](https://github.com/airblade/vim-gitgutter)
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
- [vim-indent-guides](https://github.com/nathanaelkane/vim-indent-guides)
Expand Down Expand Up @@ -103,7 +104,7 @@ To have a brighter and more prominent vertical split line, set the following opt

### Version
```vim
v 1.3.2 vim
v 1.4.3 vim
v 1.0.2 vim-airline
v 1.0.0 lightline
```
Expand Down
47 changes: 43 additions & 4 deletions colors/lighthaus.vim
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if exists("syntax_on")
endif

let g:colors_name = "lighthaus"
let g:version = "1.2.2"
let g:version = "1.4.3"
" }


Expand Down Expand Up @@ -137,9 +137,9 @@ call s:h("DiffLine", s:blue, "", "")
call s:h("DiffFile", s:purple, "", "")
call s:h("DiffNewFile", s:hl_yellow, "", "")

call s:h("ErrorMsg", s:black, s:red2, "")
call s:h("WarningMsg", s:black, s:orange2, "")
call s:h("Question", s:black, s:purple2, "")
call s:h("ErrorMsg", s:red2, s:bg, "")
call s:h("WarningMsg", s:orange2, s:bg, "")
call s:h("Question", s:purple2, s:bg, "")

call s:h("Pmenu", s:white2, s:black, "")
call s:h("PmenuSel", s:hl_orange, s:hl_bg, "")
Expand Down Expand Up @@ -368,6 +368,45 @@ call s:h("CtrlPMatch", s:cyan2, "", "")
" }


" ― ― ― ― ― ― ― ― ―
" FZF
" https://github.com/junegunn/fzf.vim
" ― ― ― ― ― ― ― ― ―
call s:h("FZF_fg", s:white, "", "")
call s:h("FZF_bg", "", s:black, "")
call s:h("FZF_hl", s:hl_yellow, "", "")

call s:h("FZF_fg2", s:fg_alt, "", s:B)
call s:h("FZF_hl2", s:orange2, "", s:B)

call s:h("FZF_info", s:purple2, "", "")
call s:h("FZF_border", s:blue, "", "")

call s:h("FZF_prompt", s:green2, "", "")
call s:h("FZF_pointer", s:hl_yellow, "", s:B)
call s:h("FZF_marker", s:red, "", "")
call s:h("FZF_spinner", s:cyan2, "", "")
call s:h("FZF_header", s:blue, "", "")

" {
let g:fzf_colors =
\ { 'fg': ['fg', 'FZF_fg'],
\ 'bg': ['bg', 'FZF_bg'],
\ 'hl': ['fg', 'FZF_hl'],
\ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'FZF_fg2'],
\ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
\ 'hl+': ['fg', 'FZF_hl2'],
\ 'info': ['fg', 'FZF_info'],
\ 'border': ['fg', 'FZF_border'],
\ 'prompt': ['fg', 'FZF_prompt'],
\ 'pointer': ['fg', 'FZF_pointer'],
\ 'marker': ['fg', 'FZF_marker'],
\ 'spinner': ['fg', 'FZF_spinner'],
\ 'header': ['fg', 'FZF_header'] }

" }


" ― ― ― ― ― ― ― ― ―
" GIT
" ― ― ― ― ― ― ― ― ―
Expand Down

0 comments on commit 32ad5c3

Please sign in to comment.