Browse Source

Use pywal plugin to fix Vim colors

single-screen
Kevin Mok 5 months ago
parent
commit
8eed1c71db
No known key found for this signature in database GPG Key ID: 6DEED612B26C08E2
  1. 3
      dot_config/fish/config.fish.tmpl
  2. 10
      dot_vimrc.tmpl

3
dot_config/fish/config.fish.tmpl

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

10
dot_vimrc.tmpl

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

Loading…
Cancel
Save