Some new colors + more lightweight coloring vim plugin.

This commit is contained in:
Bartek Stalewski 2022-04-29 19:02:59 +02:00
parent c718047723
commit 5ccf664210
3 changed files with 8 additions and 9 deletions

View File

@ -16,8 +16,8 @@ static const int topbar = 1; /* 0 means bottom bar */
static const int user_bh = 0; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */
static const char *fonts[] = { "RobotoMono Nerd Font:style=Medium:pixelsize=13" };
static const char normfgcolor[] = "#bbbbbb";
static const char col_fg[] = "#c7c7c7";
static const char col_bg[] = "#161616";
static const char col_fg[] = "#f8f8f2";
static const char col_bg[] = "#272822";
static const char col_bd[] = "#161616";
static const char col_fg_sel[] = "#ffffff";
static const char col_bg_sel[] = "#005577";

View File

@ -116,8 +116,9 @@ static const char *colorname[] = {
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
//"#f8f8f2",
"#c7c7c7", /* 256 -> foreground */
"#161616", /* 257 -> background */
"#272822", /* 257 -> background */
"#c7c7c7", /* 258 -> cursor */
"#161616", /* 259 -> cursor text */
};

View File

@ -7,7 +7,7 @@ Plug 'junegunn/fzf'
Plug 'junegunn/fzf.vim'
Plug 'dense-analysis/ale'
Plug 'Yggdroot/indentLine'
Plug 'RRethy/vim-hexokinase', { 'do': 'make hexokinase' }
Plug 'BourgeoisBear/clrzr'
Plug 'itchyny/lightline.vim'
Plug 'airblade/vim-gitgutter'
Plug 'hashivim/vim-terraform'
@ -66,11 +66,9 @@ let &t_EI = "\<Esc>[2 q"
hi BadWhitespace guibg=red
hi Comment cterm=italic gui=italic
hi GitGutterChange guifg=#bbbb00 guibg=#232526
hi LineNr guifg=#465457 guibg=#232526
hi NonText guibg=NONE
hi Normal guibg=NONE
hi SignColumn guifg=#465457 guibg=#232526
hi GitGutterChange guifg=#bbbb00 guibg=#272822
hi LineNr guifg=#465457 guibg=#272822
hi SignColumn guifg=#465457 guibg=#272822
hi Visual guifg=#ffffff guibg=#005577
let $FZF_DEFAULT_COMMAND='fd -H -L --ignore-file ~/.local/config/fd'