update colors to gruvbox
This commit is contained in:
parent
8d9f125840
commit
2f77a99e10
3 changed files with 77 additions and 18 deletions
|
@ -9,7 +9,7 @@
|
|||
# All imports must either be absolute paths starting with `/`, or paths relative
|
||||
# to the user's home directory starting with `~/`.
|
||||
import:
|
||||
- ./dracula.yml
|
||||
- ./gruvbox.yml
|
||||
|
||||
# Any items in the `env` entry below will be added as
|
||||
# environment variables. Some entries may override variables
|
||||
|
|
59
home/.config/alacritty/gruvbox.yml
Normal file
59
home/.config/alacritty/gruvbox.yml
Normal file
|
@ -0,0 +1,59 @@
|
|||
# Colors (Gruvbox dark)
|
||||
colors:
|
||||
primary:
|
||||
# hard contrast background - '#1d2021'
|
||||
background: &gruvbox_dark_bg '#282828'
|
||||
# soft contrast background - '#32302f'
|
||||
foreground: '#fbf1c7'
|
||||
bright_foreground: '#f9f5d7'
|
||||
dim_foreground: '#f2e5bc'
|
||||
cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
vi_mode_cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
# search:
|
||||
# matches:
|
||||
# foreground: '#000000'
|
||||
# background: '#ffffff'
|
||||
# focused_match:
|
||||
# foreground: CellBackground
|
||||
# background: CellForeground
|
||||
# bar:
|
||||
# background: ''
|
||||
# foreground: ''
|
||||
# line_indicator:
|
||||
# foreground: None
|
||||
# background: None
|
||||
selection:
|
||||
text: CellBackground
|
||||
background: CellForeground
|
||||
bright:
|
||||
black: '#928374'
|
||||
red: '#fb4934'
|
||||
green: '#b8bb26'
|
||||
yellow: '#fabd2f'
|
||||
blue: '#83a598'
|
||||
magenta: '#d3869b'
|
||||
cyan: '#8ec07c'
|
||||
white: '#ebdbb2'
|
||||
normal:
|
||||
black: *gruvbox_dark_bg
|
||||
red: '#cc241d'
|
||||
green: '#98971a'
|
||||
yellow: '#d79921'
|
||||
blue: '#458588'
|
||||
magenta: '#b16286'
|
||||
cyan: '#689d6a'
|
||||
white: '#a89984'
|
||||
dim:
|
||||
black: '#32302f'
|
||||
red: '#9d0006'
|
||||
green: '#79740e'
|
||||
yellow: '#b57614'
|
||||
blue: '#076678'
|
||||
magenta: '#8f3f71'
|
||||
cyan: '#427b58'
|
||||
white: '#928374'
|
||||
# indexed_colors: []
|
|
@ -28,7 +28,7 @@ else
|
|||
endif
|
||||
let g:deoplete#enable_at_startup = 1
|
||||
|
||||
Plug 'dracula/vim', { 'as': 'dracula' }
|
||||
Plug 'morhetz/gruvbox'
|
||||
Plug 'Chiel92/vim-autoformat'
|
||||
Plug 'Lokaltog/vim-easymotion'
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
|
@ -59,9 +59,9 @@ if executable('ag')
|
|||
let $FZF_DEFAULT_COMMAND = 'ag --skip-vcs-ignores --nocolor -g "" -l'
|
||||
endif
|
||||
|
||||
colorscheme dracula " Color scheme
|
||||
autocmd vimenter * ++nested colorscheme gruvbox " Color scheme
|
||||
set laststatus=2 " Enable airline
|
||||
let g:airline_theme = 'jellybeans' " Airline color scheme
|
||||
let g:airline_theme = 'gruvbox' " Airline color scheme
|
||||
let g:airline#extensions#tabline#enabled = 1 " Enable tab list in airline
|
||||
let g:airline#extensions#tabline#left_sep = ' '
|
||||
let g:airline#extensions#tabline#left_alt_sep = '|'
|
||||
|
|
Loading…
Reference in a new issue