diff options
author | self <george@gabbott.dev> | 2022-08-26 23:24:35 +0100 |
---|---|---|
committer | self <george@gabbott.dev> | 2022-08-26 23:24:35 +0100 |
commit | 0f59cd15823b45275a51675855e21033522f3841 (patch) | |
tree | b4d67cb1175a7831b4ce09bd4b08eec047f31778 | |
parent | db605abcf1369ab7510faea01742436260d44e17 (diff) |
I like not burning my eyes out of a nighttime
-rwxr-xr-x | init.vim | 27 |
1 files changed, 23 insertions, 4 deletions
@@ -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() |