Light theme

This commit is contained in:
Saeed Afzal
2025-01-06 21:25:24 +00:00
parent 3fca859015
commit 119f83f0ae
4 changed files with 31 additions and 22 deletions

View File

@@ -27,3 +27,6 @@ if vim.g.neovide == true then
map("n", "<C-+>", ":lua vim.g.neovide_scale_factor = math.min(vim.g.neovide_scale_factor + 0.1, 1.0)<CR>")
map("n", "<C-_>", ":lua vim.g.neovide_scale_factor = math.max(vim.g.neovide_scale_factor - 0.1, 0.1)<CR>")
end
-- Theme toggling
map("n", "<leader>t", ":lua require('theme_switcher').toggle()<CR>")