From 9abcc60cf3981f45125699e1c02b636cf710593d Mon Sep 17 00:00:00 2001 From: titusdmoore Date: Fri, 3 Nov 2023 22:46:39 -0400 Subject: [PATCH] More theme configuration --- init.lua | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/init.lua b/init.lua index 5e7814f1..6c4c7753 100644 --- a/init.lua +++ b/init.lua @@ -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!