Skip to content

Update deus.vim #42

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
19 changes: 13 additions & 6 deletions colors/deus.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,22 @@
" Description: a retro-modern colorscheme in Vim
" Author: ajmwagar
" Source: https://github.com/ajmwagar/vim-deus
" Last Modified: 21 June 2019
" Last Modified: 01 August 2023
" -----------------------------------------------------------------------------

" Setup Colors/Palette {{{
" Initialisation: {{{

set t_Co=256
set termguicolors

let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"

set background=dark " Setting dark mode
colorscheme deus
let g:deus_termcolors=256

if version > 580
hi clear
if exists("syntax_on")
Expand Down Expand Up @@ -420,8 +430,8 @@ call s:HL('IncSearch', s:bg0, s:hls_cursor)

call s:HL('Underlined', s:blue, s:none, s:underline)

call s:HL('StatusLine', s:bg2, s:fg1, s:bold . s:inverse)
call s:HL('StatusLineNC', s:bg2, s:fg1, s:bold . s:inverse)
call s:HL('StatusLine', s:bg2, s:yellow, s:bold . s:inverse)
call s:HL('StatusLineNC', s:bg2, s:blue, s:bold . s:inverse)

" The column separating vertically split windows
call s:HL('VertSplit', s:fg4, s:vert_split)
Expand Down Expand Up @@ -777,9 +787,6 @@ call s:HL('BufTabLineActive', s:fg4, s:bg2)
call s:HL('BufTabLineHidden', s:fg1, s:bg2)
call s:HL('BufTabLineFill', s:bg0, s:bg2)

hi StatusLine ctermbg=10 ctermfg=10 cterm=bold guibg=NONE guifg=NONE gui=NONE
hi StatusLineNC ctermbg=10 ctermfg=10 cterm=NONE guibg=NONE guifg=NONE gui=NONE

" }}}
" Netrw: {{{

Expand Down