t0vim/lua/custom/colorschemes.lua
2025-01-31 22:22:17 +03:00

9 lines
426 B
Lua

-- Turn on termguicolors for colorschemes
-- (Have to use true color terminal to see theese setting work)
vim.opt.termguicolors = true
vim.opt.background = "dark" -- colorschemes that can be light or dark will be made dark
vim.opt.signcolumn = "yes" -- show sigh columns so that text doesn't shift
vim.g.gruvbox_material_background = 'hard'
vim.g.gruvbox_material_enable_italic = true
vim.cmd.colorscheme("gruvbox-material")