This commit is contained in:
siduck
2023-04-10 10:05:05 +05:30
parent af123eee4d
commit 34bdca17d2
2 changed files with 7 additions and 32 deletions

View File

@@ -1,12 +1,7 @@
-- Chadrc overrides this file
local M = {}
M.options = {
nvChad = {
update_url = "https://github.com/NvChad/NvChad",
update_branch = "v2.0",
},
nvchad_branch = "v2.0",
}
M.ui = {
@@ -29,9 +24,7 @@ M.ui = {
selected_item_bg = "colored", -- colored / simple
},
telescope = {
style = "borderless", -- borderless / bordered
},
telescope = { style = "borderless" }, -- borderless / bordered
------------------------------- nvchad_ui modules -----------------------------
statusline = {
@@ -76,9 +69,7 @@ M.ui = {
},
},
cheatsheet = {
theme = "grid", -- simple/grid
},
cheatsheet = { theme = "grid" }, -- simple/grid
lsp = {
-- show function signatures i.e args as you type
@@ -89,11 +80,10 @@ M.ui = {
},
}
M.plugins = "" -- path i.e "custom.plugins" -> custom/plugins.lua only and not custom/plugins/init.lua!!!!
M.plugins = "" -- path i.e "custom.plugins", so make custom/plugins.lua file
M.lazy_nvim = require "plugins.configs.lazy_nvim" -- config for lazy.nvim startup options
-- these are default mappings, check core.mappings for table structure
M.mappings = {}
return M