Files
nixos-config/user/app/nvim/lua/chadrc.lua
2024-11-14 22:39:43 -06:00

34 lines
870 B
Lua

-- This file needs to have same structure as nvconfig.lua
-- https://github.com/NvChad/ui/blob/v2.5/lua/nvconfig.lua
-- Please read that file to know all available options :(
---@type ChadrcConfig
local M = {}
M.base46 = {
theme = "stylix",
-- hl_override = {
-- Comment = { italic = true },
-- ["@comment"] = { italic = true },
-- },
}
M.ui = {
theme = "stylix",
}
M.nvdash = {
load_on_startup = true,
buttons = {
{ txt = " Find File", keys = "Spc .", cmd = "Telescope find_files" },
{ txt = "󰙅 Nvimtree", keys = "SPC e", cmd = "NvimTreeToggle" },
{ txt = " Projects ", keys = "Spc p p", cmd = "Telescope workspaces" },
{ txt = "󰯌 Vsplit ", keys = "Spc w v", cmd = "vsplit" },
{ txt = "󰯋 Split ", keys = "Spc w s", cmd = "split" },
{ txt = "󰋗 Help", keys = "Spc c h", cmd = "NvCheatsheet" },
},
}
return M