Skip to content

Commit

Permalink
v 1.2.2
Browse files Browse the repository at this point in the history
Dark Grey Color Added + Beacon.nvim support
  • Loading branch information
lighthaus-theme committed Mar 31, 2021
1 parent 89f66df commit 32e631e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
- [License](#license)

### Vim
#### v1.2.2
- Beacon.nvim support added (31/03/2021)
- Added `grey` color to correct contrast issue. See [Issue](https://github.com/lighthaus-theme/lighthaus/issues/3)

#### v1.1.2
- Better coc support added (10/03/2021)
- Added option for vertical separator color. See [Issue](https://github.com/lighthaus-theme/vim-lighthaus/issues/3)
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Lighthaus theme for vim makes it easy to view and edit files.
Lighthaus aims to not flood your screen with colors but instead let's you focus on the work with relevant colors aiding in your workflow.
It comes with support for the following popular plugins:
- [ale](https://github.com/dense-analysis/ale)
- [beacon](https://github.com/DanilaMihailov/beacon.nvim)
- [coc](https://github.com/neoclide/coc.nvim)
- [fugitive](https://github.com/tpope/vim-fugitive)
- [gitgutter](https://github.com/airblade/vim-gitgutter)
Expand Down Expand Up @@ -62,7 +63,7 @@ For Installation with [vim-plug](https://github.com/junegunn/vim-plug):
- Add `Plug 'lighthaus-theme/vim-lighthaus'` to the _vim-plug's_ installation function in your `vimrc`
- Run `:PlugInstall` inside vim
- Activate the theme by adding `colorscheme lighthaus` in your `vimrc`
- Restart vim
- Restart vim or run `:source ~/.vimrc` to reload the config.

#### Vim-Airline
Lighthaus theme comes bundled with vim-airline.
Expand Down Expand Up @@ -101,7 +102,7 @@ To have a brighter and more prominent vertical split line, set the following opt

### Version
```vim
v 1.1.2 vim
v 1.2.2 vim
v 1.0.2 vim-airline
v 1.0.0 lightline
```
Expand Down
18 changes: 15 additions & 3 deletions colors/lighthaus.vim
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ if exists("syntax_on")
endif

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


" LIGHTHAUS COLORS {
let s:black = { "gui": "#21252D", "cterm": "234" }

let s:grey = { "gui": "#8E8D8D", "cterm": "246" }

let s:red = { "gui": "#FC2929", "cterm": "79" }
let s:red2 = { "gui": "#FF5050", "cterm": "79" }

Expand Down Expand Up @@ -55,7 +57,7 @@ let s:hl_bg = { "gui": "#090B26", "cterm": "234" }
" }


let s:line_fg = { "gui": "#747578", "cterm": "175" }
let s:line_fg = s:grey

let s:gutter_bg = { "gui": "#282c34", "cterm": "236" }
let s:non_text = { "gui": "#373C45", "cterm": "239" }
Expand Down Expand Up @@ -348,8 +350,18 @@ call s:h("sqlSpecial", s:orange2, "", "")
" + + + + + + + + + PLUGINS + + + + + + + + +


" ― ― ― ― ― ― ― ― ―
" BEACON.NVIM
" https://github.com/DanilaMihailov/beacon.nvim
" ― ― ― ― ― ― ― ― ―
" {
call s:h("Beacon", "", s:grey, "")
" }


" ― ― ― ― ― ― ― ― ―
" CtrlP
" https://github.com/kien/ctrlp.vim
" ― ― ― ― ― ― ― ― ―
" {
call s:h("CtrlPMatch", s:cyan2, "", "")
Expand Down Expand Up @@ -549,7 +561,7 @@ call s:h("SignatureMarkText", s:hl_orange, "", "")
let g:terminal_color_5 = s:purple.gui
let g:terminal_color_6 = s:cyan.gui
let g:terminal_color_7 = s:white.gui
let g:terminal_color_8 = s:bg.gui
let g:terminal_color_8 = s:grey.gui
let g:terminal_color_9 = s:red2.gui
let g:terminal_color_10 = s:green2.gui
let g:terminal_color_11 = s:orange2.gui
Expand Down

0 comments on commit 32e631e

Please sign in to comment.