-
Notifications
You must be signed in to change notification settings - Fork 0
/
chadrc.lua
37 lines (32 loc) · 1.67 KB
/
chadrc.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
theme = "bearded-arc",
theme_toggle = { "bearded-arc", "one_light" },
hl_override = highlights.override,
hl_add = highlights.add,
nvdash = {
load_on_startup = false,
header = {
" ",
" ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗ ",
" ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║ ",
" ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║ ",
" ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║ ",
" ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║ ",
" ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝ ",
" ",
},
buttons = {
{ " Find Projects", "Spc f p", "Telescope project" },
{ " Find File", "Spc f f", "Telescope find_files" },
{ " Configure NvChad", "Spc c n", "edit ~/.config/nvim/chadrc.lua" },
},
},
}
M.plugins = "custom.plugins"
-- check core.mappings for table structure
M.mappings = require "custom.mappings"
return M