43 lines
752 B
Lua
43 lines
752 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 = "solarized_dark",
|
|
-- transparency = true,
|
|
|
|
-- hl_override = {
|
|
-- Comment = { italic = true },
|
|
-- ["@comment"] = { italic = true },
|
|
-- },
|
|
}
|
|
M.mason = {
|
|
pkgs = {
|
|
"clangd", "codelldb", "clang-format"
|
|
}
|
|
}
|
|
M.mappings = {
|
|
dap = {
|
|
plugin = true,
|
|
n = {
|
|
["<leader>db"] = {
|
|
"<cmd> DapToggleBreakpoint <CR>",
|
|
"Add breakpoint at line",
|
|
},
|
|
["<leader>dr"] = {
|
|
"<cmd> DapContinue <CR>",
|
|
"Start or continue the debugger",
|
|
}
|
|
}
|
|
}
|
|
}
|
|
M.ui = {
|
|
tabufline = {
|
|
enabled = false
|
|
}
|
|
}
|
|
|
|
return M
|