dotfiles/nvim/lua/config/colourscheme.lua

16 lines
551 B
Lua
Raw Normal View History

2025-04-06 15:37:42 +01:00
-- local global = vim.g
2024-11-17 15:09:38 +00:00
2025-04-06 15:37:42 +01:00
-- global.gruvbox_material_background = "medium"
-- global.gruvbox_material_enable_bold = 0
-- global.gruvbox_material_enable_italic = 0
2024-10-27 16:21:40 +00:00
2025-04-06 15:37:42 +01:00
-- local function update_highlight_group(group, tbl)
-- local old_hl = vim.api.nvim_get_hl_by_name(group, true)
-- local new_hl = vim.tbl_extend("force", old_hl, tbl)
-- vim.api.nvim_set_hl(0, group, new_hl)
-- end
2024-10-27 16:21:40 +00:00
2025-04-06 15:37:42 +01:00
-- update_highlight_group("Function", { bold = false })
-- update_highlight_group("Comment", { italic = false })
-- update_highlight_group("String", { italic = false })