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", "folke/tokyonight.nvim",
lazy = false, lazy = false,
config = function()
vim.cmd.colorscheme 'tokyonight-night'
end,
priority = 1000, priority = 1000,
opts = {}, opts = {},
}, },
-- { {
-- -- Theme inspired by Atom -- Theme inspired by Atom
-- 'navarasu/onedark.nvim', 'navarasu/onedark.nvim',
-- priority = 1000, priority = 1000,
-- config = function() config = function()
-- vim.cmd.colorscheme 'onedark' vim.cmd.colorscheme 'onedark'
-- end, end,
-- }, },
{ {
-- Set lualine as statusline -- Set lualine as statusline
@ -236,6 +233,14 @@ require('glow').setup({
install_path = os.getenv("GLOW_PATH") 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 ]] -- [[ Setting options ]]
-- See `:help vim.o` -- See `:help vim.o`
-- NOTE: You can change these options as you wish! -- NOTE: You can change these options as you wish!