mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
add colorscheme kanagawa
This commit is contained in:
parent
08d3d7ec08
commit
6cf31e2dcb
@ -50,6 +50,10 @@ function! s:theme_setup_dict.nightfox() dict abort
|
|||||||
colorscheme nordfox
|
colorscheme nordfox
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! s:theme_setup_dict.kanagawa() dict abort
|
||||||
|
colorscheme kanagawa
|
||||||
|
endfunction
|
||||||
|
|
||||||
" Theme to directory name mapping, because theme repo name is not necessarily
|
" Theme to directory name mapping, because theme repo name is not necessarily
|
||||||
" the same as the theme name itself.
|
" the same as the theme name itself.
|
||||||
let s:theme2dir = {
|
let s:theme2dir = {
|
||||||
@ -62,6 +66,7 @@ let s:theme2dir = {
|
|||||||
\ 'doom_one': 'doom-one.nvim',
|
\ 'doom_one': 'doom-one.nvim',
|
||||||
\ 'everforest' :'everforest',
|
\ 'everforest' :'everforest',
|
||||||
\ 'nightfox': 'nightfox.nvim',
|
\ 'nightfox': 'nightfox.nvim',
|
||||||
|
\ 'kanagawa': 'kanagawa.nvim',
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
let s:theme = utils#RandElement(keys(s:theme2dir))
|
let s:theme = utils#RandElement(keys(s:theme2dir))
|
||||||
|
|||||||
@ -123,6 +123,7 @@ require("packer").startup({
|
|||||||
use({"NTBBloodbath/doom-one.nvim", opt = true})
|
use({"NTBBloodbath/doom-one.nvim", opt = true})
|
||||||
use({"sainnhe/everforest", opt = true})
|
use({"sainnhe/everforest", opt = true})
|
||||||
use({"EdenEast/nightfox.nvim", opt = true})
|
use({"EdenEast/nightfox.nvim", opt = true})
|
||||||
|
use({"rebelot/kanagawa.nvim", opt = true})
|
||||||
|
|
||||||
-- Show git change (change, delete, add) signs in vim sign column
|
-- Show git change (change, delete, add) signs in vim sign column
|
||||||
use({"mhinz/vim-signify", event = 'BufEnter'})
|
use({"mhinz/vim-signify", event = 'BufEnter'})
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user