mirror of
https://github.com/gabehf/base46.git
synced 2026-03-14 01:37:03 -07:00
prioritize nvchad_theme global when getting theme name
This commit is contained in:
parent
a07bc6cd31
commit
f4500d63ea
2 changed files with 10 additions and 2 deletions
|
|
@ -1,8 +1,14 @@
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.get_colors = function(type)
|
M.get_colors = function(type)
|
||||||
local name = require("core.utils").load_config().ui.theme
|
local name
|
||||||
vim.g.nvchad_theme = name
|
|
||||||
|
if vim.g.nvchad_theme then
|
||||||
|
name = vim.g.nvchad_theme
|
||||||
|
else
|
||||||
|
name = require("core.utils").load_config().ui.theme
|
||||||
|
vim.g.nvchad_theme = name
|
||||||
|
end
|
||||||
|
|
||||||
-- theme paths
|
-- theme paths
|
||||||
local default_path = "hl_themes." .. name
|
local default_path = "hl_themes." .. name
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
-- returns a huge table of all highlight groups & their colors
|
||||||
|
|
||||||
local merge_tb = require("base16").merge_tb
|
local merge_tb = require("base16").merge_tb
|
||||||
|
|
||||||
local highlights = {}
|
local highlights = {}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue