From 63f8ee822add8db8a63c435047dfed5f61f214b7 Mon Sep 17 00:00:00 2001 From: George Rawlinson Date: Tue, 7 Feb 2023 20:54:31 +1300 Subject: [PATCH] feat(nvim): add witchhazel colorscheme --- nvim/.config/nvim/init.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index ca02db2..eb8912a 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim @@ -2,6 +2,7 @@ call plug#begin() " plugins Plug 'SirVer/ultisnips' +Plug 'theacodes/witchhazel' call plug#end() @@ -34,6 +35,10 @@ noremap syntax enable let g:load_doxygen_syntax=1 +" theme +" set termguicolors +" colorscheme witchhazel-hypercolor + " enable filetype plugins filetype plugin indent on autocmd FileType javascript setlocal tabstop=2 shiftwidth=2 expandtab