Some new colors + more lightweight coloring vim plugin.
This commit is contained in:
parent
c718047723
commit
5ccf664210
@ -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";
|
||||
|
@ -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 */
|
||||
};
|
||||
|
10
vim/vimrc
10
vim/vimrc
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user