From 0f59cd15823b45275a51675855e21033522f3841 Mon Sep 17 00:00:00 2001 From: self Date: Fri, 26 Aug 2022 23:24:35 +0100 Subject: I like not burning my eyes out of a nighttime --- init.vim | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/init.vim b/init.vim index da4eaa7..57ffbf0 100755 --- a/init.vim +++ b/init.vim @@ -20,7 +20,7 @@ set clipboard=unnamedplus " using system clipboard filetype plugin on set ttyfast " Speed up scrolling in Vim set cursorline -set background=dark +set termguicolors " Themes don't seem to work without this. " set backupdir=~/.cache/vim " Directory to store backup files. " vim-plug -> @@ -61,6 +61,20 @@ Plug 'https://git.sr.ht/%7Eswalladge/paper.vim' Plug 'connorholyday/vim-snazzy' let g:SnazzyTransparent = 0 +Plug 'https://github.com/altercation/vim-colors-solarized' + +Plug 'https://github.com/katawful/kat.nvim' + +Plug 'https://github.com/humanoid-colors/vim-humanoid-colorscheme' + +Plug 'https://github.com/Rigellute/shades-of-purple.vim' + +Plug 'https://github.com/acetylen/boring.nvim' + +Plug 'https://github.com/rktjmp/lush.nvim' +Plug 'https://github.com/mcchrish/zenbones.nvim' + + " <- end themes """"""""""""""" @@ -174,9 +188,14 @@ Plug 'nvim-telescope/telescope.nvim' call plug#end() " <- vim-plug -" Set Theme -" colorscheme tokyonight " tempus themes don't work without something better before? -" colorscheme tempus_warp +" Set Theme +if strftime("%H") < 17 + set background=light + colorscheme tempus_totus +else + set background=dark + colorscheme tempus_night +endif " numb :lua require('numb').setup() -- cgit v1.2.1