Switch to LazyVim.

This commit is contained in:
Bartek Stalewski 2025-01-28 17:20:49 +01:00
parent 9eeb3ed88e
commit 5acb10f0aa
No known key found for this signature in database
24 changed files with 626 additions and 91 deletions

View file

@ -1,30 +0,0 @@
-- This file needs to have same structure as nvconfig.lua
-- https://github.com/NvChad/NvChad/blob/v2.5/lua/nvconfig.lua
local M = {}
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" },
},
theme = "monekai",
transparency = true,
}
M.ui = {
statusline = {
theme = "vscode_colored",
},
}
M.mason = {
cmd = true,
pkgs = { "lua-language-server", "terraform-ls", "tflint" },
}
return M