mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
use monokai-tasty theme
This commit is contained in:
parent
d0c4b68298
commit
3709bb8776
@ -101,7 +101,7 @@ Plug 'sjl/badwolf'
|
|||||||
Plug 'ajmwagar/vim-deus'
|
Plug 'ajmwagar/vim-deus'
|
||||||
Plug 'https://gitlab.com/yorickpeterse/happy_hacking.vim.git'
|
Plug 'https://gitlab.com/yorickpeterse/happy_hacking.vim.git'
|
||||||
Plug 'lifepillar/vim-solarized8'
|
Plug 'lifepillar/vim-solarized8'
|
||||||
Plug 'sickill/vim-monokai'
|
Plug 'patstockwell/vim-monokai-tasty'
|
||||||
Plug 'whatyouhide/vim-gotham'
|
Plug 'whatyouhide/vim-gotham'
|
||||||
Plug 'rakr/vim-one'
|
Plug 'rakr/vim-one'
|
||||||
Plug 'kaicataldo/material.vim'
|
Plug 'kaicataldo/material.vim'
|
||||||
|
|||||||
10
ui.vim
10
ui.vim
@ -13,7 +13,7 @@ set background=dark
|
|||||||
|
|
||||||
"{{ Colorscheme settings
|
"{{ Colorscheme settings
|
||||||
let s:candidate_theme = ['gruvbox8', 'srcery', 'badwolf', 'deus', 'happy_hacking', 'solarized8',
|
let s:candidate_theme = ['gruvbox8', 'srcery', 'badwolf', 'deus', 'happy_hacking', 'solarized8',
|
||||||
\ 'monokai', 'gotham', 'vim_one', 'material', 'onedark']
|
\ 'monokai_tasty', 'gotham', 'vim_one', 'material', 'onedark']
|
||||||
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
|
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
|
||||||
let s:theme = s:candidate_theme[s:idx]
|
let s:theme = s:candidate_theme[s:idx]
|
||||||
|
|
||||||
@ -72,10 +72,10 @@ function! s:my_theme_dict.solarized8() dict abort
|
|||||||
colorscheme solarized8_high
|
colorscheme solarized8_high
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:my_theme_dict.monokai() dict abort
|
function! s:my_theme_dict.monokai_tasty() dict abort
|
||||||
if !utils#HasColorscheme('monokai') | return | endif
|
if !utils#HasColorscheme('vim-monokai-tasty') | return | endif
|
||||||
|
let g:vim_monokai_tasty_italic = 1
|
||||||
colorscheme monokai
|
colorscheme vim-monokai-tasty
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:my_theme_dict.gotham() dict abort
|
function! s:my_theme_dict.gotham() dict abort
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user