More theme configuration

This commit is contained in:
titusdmoore 2023-11-03 22:46:39 -04:00
parent 78a9403435
commit 9abcc60cf3
1 changed files with 16 additions and 11 deletions

View File

@ -141,21 +141,18 @@ require('lazy').setup({
{
"folke/tokyonight.nvim",
lazy = false,
config = function()
vim.cmd.colorscheme 'tokyonight-night'
end,
priority = 1000,
opts = {},
},
-- {
-- -- Theme inspired by Atom
-- 'navarasu/onedark.nvim',
-- priority = 1000,
-- config = function()
-- vim.cmd.colorscheme 'onedark'
-- end,
-- },
{
-- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme 'onedark'
end,
},
{
-- Set lualine as statusline
@ -236,6 +233,14 @@ require('glow').setup({
install_path = os.getenv("GLOW_PATH")
})
-- Configure Theme
require('tokyonight').setup({
style = 'night',
terminal_colors = true,
sidebars = { 'qf', 'vista_kind', 'terminal', 'packer' },
})
vim.cmd.colorscheme 'tokyonight'
-- [[ Setting options ]]
-- See `:help vim.o`
-- NOTE: You can change these options as you wish!