Skip to content
Snippets Groups Projects
Commit 64dceb2a authored by Eduardo Trujillo's avatar Eduardo Trujillo
Browse files

fix: Prioritize colorscheme loading to fix variant selection issue

parent 7204a321
No related branches found
No related tags found
No related merge requests found
vim.g.mapleader = ","
-- Plugins
require('plugins')
-- Options
require('options')
-- Mappings
require('mappings')
-- Color theme
--vim.api.nvim_command("colorscheme tokyonight")
-- Plugins
require('plugins')
-- Misc
vim.api.nvim_command("syntax on")
......
return function()
local tokyonight = require('tokyonight')
vim.api.nvim_command("colorscheme tokyonight-moon")
tokyonight.setup({
style = "storm",
style = "moon",
--transparent = true,
styles = {
sidebars = "dark",
......@@ -12,6 +14,4 @@ return function()
lualine_bold = true,
use_background = false,
})
vim.api.nvim_command("colorscheme tokyonight-moon")
end
......@@ -37,6 +37,8 @@ require('lazy').setup({
{ "folke/lazy.nvim", enabled = false },
{
'folke/tokyonight.nvim',
lazy = false;
priority = 1000;
config = require('config.tokyonight'),
},
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment