dotfiles/config/nvim/lua/chadrc.lua

32 lines
714 B
Lua
Raw Normal View History

-- This file needs to have same structure as nvconfig.lua
-- https://github.com/NvChad/NvChad/blob/v2.5/lua/nvconfig.lua
---@type ChadrcConfig
local M = {}
2024-11-03 16:35:36 +01:00
M.base46 = {
hl_override = {
ColorColumn = { bg = "#770000" },
Comment = { italic = true, },
DiffChange = { bg = "NONE", fg = "#e7c547" },
DiffText = { bg = "NONE", fg = "#ff8700" },
SpellBad = { bg = "#770000", fg = "#ffffff" },
Visual = { bg = "#0094d8", fg = "#ffffff" },
},
2024-11-03 21:52:17 +01:00
theme = "monekai",
2025-01-26 00:44:55 +01:00
transparency = true
2024-11-03 16:35:36 +01:00
}
2024-11-03 16:35:36 +01:00
M.ui = {
statusline = {
theme = "vscode_colored",
}
}
M.mason = {
cmd = true,
2024-11-03 18:18:35 +01:00
pkgs = { "lua-language-server", "terraform-ls", "tflint" }
}
return M