mirror of https://github.com/E-Almqvist/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
403 B
18 lines
403 B
-- This file needs to have same structure as nvconfig.lua
|
|
-- https://github.com/NvChad/ui/blob/v2.5/lua/nvconfig.lua
|
|
|
|
---@type ChadrcConfig
|
|
local M = {}
|
|
|
|
-- Path to overriding theme and highlights files
|
|
local highlights = require "highlights"
|
|
|
|
M.ui = {
|
|
theme = "gruvchad",
|
|
theme_toggle = { "gruvchad", "blossom_light" },
|
|
|
|
hl_override = highlights.override,
|
|
hl_add = highlights.add,
|
|
}
|
|
|
|
return M
|
|
|