nvim/lua/chadrc.lua
2024-12-19 23:53:34 +02:00

23 lines
750 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 = "catppuccin",
transparency = true,
}
M.nvdash = {
load_on_startup = true,
buttons = {
{ txt = " Find File", keys = "Spc f f", cmd = "Telescope find_files" },
{ txt = " Recent Files", keys = "Spc f o", cmd = "Telescope oldfiles" },
{ txt = "󰈭 Find Word", keys = "Spc f w", cmd = "Telescope live_grep" },
{ txt = "󱥚 Themes", keys = "Spc t h", cmd = ":lua require('nvchad.themes').open()" },
{ txt = " Mappings", keys = "Spc c h", cmd = "NvCheatsheet" },
},
}
return M