added themes

This commit is contained in:
Henrik Bakken
2021-07-11 18:49:33 +02:00
parent d4c95be841
commit 61b0f87f40
+17 -5
View File
@@ -18,7 +18,7 @@ vim.g.BASH_Ctrl_l = "off"
opt.termguicolors = true opt.termguicolors = true
opt.cmdheight = 2 opt.cmdheight = 2
opt.background = "dark" opt.background = "dark"
vim.cmd "colorscheme nord" vim.cmd "colorscheme ayu"
opt.listchars = "tab:→ ,trail:·,extends:↷,precedes:↶,nbsp:+,eol:↵" opt.listchars = "tab:→ ,trail:·,extends:↷,precedes:↶,nbsp:+,eol:↵"
opt.list = true -- Show listchars opt.list = true -- Show listchars
opt.showtabline = 2 opt.showtabline = 2
@@ -241,11 +241,24 @@ require("packer").startup {function(use)
end end
} }
use {"kyoz/purify", rtp = "vim", }
use {"sonph/onehalf", rtp = "vim", }
use {"rakr/vim-one", }
use {"tomasr/molokai", }
use {"morhetz/gruvbox", }
use {"jnurmine/Zenburn", }
use {"jacoborus/tender.vim", }
use {"nanotech/jellybeans.vim", }
use {"mhartington/oceanic-next", }
use {"NLKNguyen/papercolor-theme", }
use {"drewtempelmeyer/palenight.vim", }
use {"altercation/vim-colors-solarized", }
use {"ayu-theme/ayu-vim", use {"ayu-theme/ayu-vim",
config = function() config = function()
vim.g.ayucolor = "light" -- vim.g.ayucolor = "light"
-- vim.g.ayucolor = "mirage" -- vim.g.ayucolor = "mirage"
-- vim.g.ayucolor = "dark" vim.g.ayucolor = "dark"
end end
} }
@@ -354,8 +367,7 @@ require("packer").startup {function(use)
config = function() config = function()
require("lualine").setup { require("lualine").setup {
options = { options = {
-- theme = "everforest", theme = "auto",
theme = "nord",
}, },
extensions = { extensions = {
"fugitive", "fugitive",