From 1f461dcf91ee1f011f87f724a4b90bc2e91ebc35 Mon Sep 17 00:00:00 2001 From: jdhao Date: Sun, 4 Jul 2021 17:18:54 +0800 Subject: Add colorscheme nord --- core/ui.vim | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/ui.vim b/core/ui.vim index bba4819..331c94f 100644 --- a/core/ui.vim +++ b/core/ui.vim @@ -56,8 +56,12 @@ function! s:my_theme_dict.gruvbox_material() dict abort colorscheme gruvbox-material endfunction +function! s:my_theme_dict.nord() dict abort + colorscheme nord +endfunction + let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark', 'neodark', - \ 'edge', 'sonokai', 'gruvbox_material'] + \ 'edge', 'sonokai', 'gruvbox_material', 'nord'] let s:idx = utils#RandInt(0, len(s:candidate_theme)-1) let s:theme = s:candidate_theme[s:idx] -- cgit v1.2.3