-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchadrc.lua
52 lines (40 loc) · 1.16 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
----------------------------------------- UI -------------------------------------------
M.ui = {
theme = "nightfox",
theme_toggle = { "nightfox", "nightfox" },
transparency = true,
hl_override = highlights.override,
hl_add = highlights.add,
telescope = {
style = "bordered",
},
nvdash = {
load_on_startup = true,
},
statusline = {
theme = "default", -- default/vscode/vscode_colored/minimal
separator_style = "default", -- default/round/block/arrow (separators work only for "default"
-- statusline theme; round and block will work for the minimal theme only)
},
tabufline = {
lazyload = true,
},
-- changed_themes = {
-- nightfox = {
-- base_30 = {
-- adust comment colors so they are visible with transparent bg
-- grey = "",
-- grey_fg = "",
-- },
-- },
-- },
}
--------------------------------- LOAD PLUGINS & MAPPINGS -----------------------------------
M.plugins = "custom.plugins"
-- check core.mappings for table structure
M.mappings = require "custom.mappings"
return M