dotfiles/_saved/neovim/nvchad/lua/chadrc.lua

31 lines
653 B
Lua
Raw Normal View History

2025-01-28 14:06:58 +01:00
-- This file needs to have same structure as nvconfig.lua
-- https://github.com/NvChad/NvChad/blob/v2.5/lua/nvconfig.lua
local M = {}
2024-11-03 16:35:36 +01:00
M.base46 = {
hl_override = {
2025-01-28 14:06:58 +01:00
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-28 14:06:58 +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",
2025-01-28 14:06:58 +01:00
},
}
M.mason = {
cmd = true,
2025-01-28 14:06:58 +01:00
pkgs = { "lua-language-server", "terraform-ls", "tflint" },
}
return M