changed themes to tokyonight

This commit is contained in:
Mike G 2024-09-14 20:38:22 -04:00
parent 7b6c664ceb
commit f6408d9d47
5 changed files with 13 additions and 12 deletions

View file

@ -5,7 +5,7 @@ return {
config = function()
require('lualine').setup({
options = {
theme = 'nord',
theme = 'tokyonight',
},
})
end,

View file

@ -1,14 +1,13 @@
return {
-- the colorscheme should be available when starting neovim
{
--"folke/tokyonight.nvim",
"shaunsingh/nord.nvim",
"folke/tokyonight.nvim",
-- "shaunsingh/nord.nvim",
lazy = false, -- make sure we load this during the startup if its your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
-- load the colorscheme here
--vim.cmd([[colorscheme tokyonight]])
vim.cmd([[colorscheme nord]])
vim.cmd([[colorscheme tokyonight]])
end,
}
},
}