add nvim config
This commit is contained in:
parent
01dae7e4ca
commit
460bd73aed
30 changed files with 2689 additions and 0 deletions
35
nvim/lua/custom/chadrc.lua
Normal file
35
nvim/lua/custom/chadrc.lua
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
---@type ChadrcConfig
|
||||
local M = {}
|
||||
|
||||
-- Path to overriding theme and highlights files
|
||||
local highlights = require "custom.highlights"
|
||||
|
||||
M.ui = {
|
||||
theme = "doomchad",
|
||||
theme_toggle = { "nord", "nord" },
|
||||
|
||||
hl_override = highlights.override,
|
||||
hl_add = highlights.add,
|
||||
|
||||
cmp = {
|
||||
style = "atom",
|
||||
selected_item_bg = "colored",
|
||||
},
|
||||
|
||||
nvdash = {
|
||||
load_on_startup = true,
|
||||
},
|
||||
|
||||
statusline = {
|
||||
theme = "default",
|
||||
separator_style = "round",
|
||||
lspprogress_len = 40,
|
||||
}
|
||||
}
|
||||
|
||||
M.plugins = "custom.plugins"
|
||||
|
||||
-- check core.mappings for table structure
|
||||
M.mappings = require "custom.mappings"
|
||||
|
||||
return M
|
||||
Loading…
Add table
Add a link
Reference in a new issue