Use pywal plugin to fix Vim colors

This commit is contained in:
2024-07-30 02:51:40 -04:00
parent 8781493ffb
commit 8eed1c71db
2 changed files with 9 additions and 4 deletions

View File

@@ -307,5 +307,6 @@ abbr xya "export-pkgs"
# task sync > /dev/null 2>&1
source /home/kevin/.config/fish/key_abbr.fish > /dev/null
wal -r
# wal -r
cat /home/kevin/.cache/wal/sequences
# ~/scripts/xmodmap-custom

View File

@@ -150,10 +150,10 @@ Plug 'vim-scripts/L9'
" find files from within Vim
" Plug 'vim-scripts/FuzzyFinder'
{{ if not .gui }}
" {{ if not .gui }}
" Gotham color scheme
Plug 'whatyouhide/vim-gotham'
{{ end }}
" {{ end }}
" " collection of Vim color schemes
" Plug 'flazz/vim-colorschemes'
@@ -254,6 +254,7 @@ Plug 'vim-airline/vim-airline'
let g:airline_section_c = '%F'
Plug 'vim-airline/vim-airline-themes'
let g:airline_powerline_fonts = 1
let g:airline_theme='supernova'
" continue Markdown lists when started
" arc
@@ -261,6 +262,7 @@ Plug 'dkarter/bullets.vim'
" coordinate Vim color scheme with terminal color scheme
Plug 'dylanaraps/wal.vim'
Plug 'AlphaTechnolog/pywal.nvim', { 'as': 'pywal' }
" Plug 'morhetz/gruvbox'
Plug 'bluz71/vim-nightfly-colors', { 'as': 'nightfly' }
@@ -369,7 +371,9 @@ call plug#end()
{{ if .gui }}
" autocmd vimenter * ++nested colorscheme gruvbox
" colorscheme wal
colorscheme nightfly
colorscheme pywal
" colorscheme nightfly
" colorscheme gotham256
{{ else }}
colorscheme gotham256
{{ end }}