refactor(nvim): pass theme setting to themes.lua

mandlm 2024-07-28 20:12:53 +02:00
parent 50c22738b3
commit d1627cef60
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
2 changed files with 5 additions and 2 deletions

View File

@ -162,8 +162,10 @@
${builtins.readFile ./nvim-cmp.lua }
${builtins.readFile ./telescope.lua }
${builtins.readFile ./themes.lua }
vim.opt.background = '${theme}'
do
local vim_theme = "${theme}";
${builtins.readFile ./themes.lua }
end
${builtins.readFile ./project-nvim.lua }
${builtins.readFile ./dap.lua }

View File

@ -1 +1,2 @@
vim.cmd("colorscheme solarized")
vim.opt.background = vim_theme