1b5ecdce45
So 5 is the limit for amount of context shown, by default its 0 which means that there wouldnt be any limit so gps could get veryyyyyyyyy long!
49 lines
913 B
Lua
49 lines
913 B
Lua
-- IMPORTANT NOTE : This is default config, so dont change anything here.
|
|
-- chadrc overrides this file
|
|
|
|
local M = {}
|
|
|
|
M.options = {
|
|
|
|
-- load your options here or load module with options1
|
|
user = function() end,
|
|
|
|
nvChad = {
|
|
-- updater
|
|
update_url = "https://github.com/NvChad/NvChad",
|
|
update_branch = "main",
|
|
},
|
|
}
|
|
|
|
---- UI -----
|
|
|
|
M.ui = {
|
|
hl_override = {},
|
|
changed_themes = {},
|
|
theme_toggle = { "onedark", "one_light" },
|
|
theme = "onedark", -- default theme
|
|
transparency = false,
|
|
}
|
|
|
|
M.plugins = {
|
|
override = {},
|
|
remove = {},
|
|
|
|
options = {
|
|
lspconfig = {
|
|
setup_lspconf = "", -- path of lspconfig file
|
|
},
|
|
statusline = {
|
|
separator_style = "default", -- default/round/block
|
|
},
|
|
},
|
|
|
|
-- add, modify, remove plugins
|
|
user = {},
|
|
}
|
|
|
|
-- check core.mappings for table structure
|
|
M.mappings = require "core.mappings"
|
|
|
|
return M
|