2021-09-03 16:03:25 +02:00
|
|
|
-- IMPORTANT NOTE : This is the user config, can be edited. Will be preserved if updated with internal updater
|
|
|
|
|
|
|
|
local M = {}
|
2021-09-19 10:11:28 +02:00
|
|
|
M.options, M.ui, M.mappings, M.plugins = {}, {}, {}, {}
|
2021-09-03 16:03:25 +02:00
|
|
|
|
|
|
|
-- To use this file, copy the strucutre of `core/default_config.lua`,
|
|
|
|
-- then define your new var, an example of setting relative number:
|
|
|
|
|
|
|
|
-- M.options = {
|
|
|
|
-- relativenumber = true,
|
|
|
|
-- }
|
|
|
|
|
2021-09-14 04:21:35 +02:00
|
|
|
|
2021-09-03 16:03:25 +02:00
|
|
|
-- user custom mappings
|
2021-09-19 10:11:28 +02:00
|
|
|
-- format: name = { "mode" , "keys" , "cmd" , "options"}
|
|
|
|
-- name: can be empty or something unique with repect to other custom mappings
|
|
|
|
-- { mode, key, cmd } or name = { mode, key, cmd }
|
|
|
|
-- mode: usage: mode or { mode1, mode2 }, multiple modes allowed, available modes => :h map-modes,
|
|
|
|
-- keys: multiple keys allowed, same synxtax as modes
|
|
|
|
-- cmd: for vim commands, must use ':' at start and add <CR> at the end if want to execute
|
|
|
|
-- options: see :h nvim_set_keymap() opts section
|
|
|
|
M.mappings.custom = {
|
2021-09-03 16:03:25 +02:00
|
|
|
-- clear_all = {
|
|
|
|
-- "n",
|
|
|
|
-- "<leader>cc",
|
|
|
|
-- "gg0vG$d",
|
|
|
|
-- },
|
|
|
|
}
|
|
|
|
|
2021-09-19 10:11:28 +02:00
|
|
|
-- NvChad included plugin options & overrides
|
|
|
|
M.plugins = {
|
|
|
|
options = {
|
|
|
|
-- lspconfig = {
|
|
|
|
-- -- servers = {"html", "cssls"}
|
|
|
|
-- servers = {},
|
|
|
|
-- },
|
|
|
|
},
|
|
|
|
-- To change the Packer `config` of a plugin that comes with NvChad,
|
|
|
|
-- add a table entry below matching the plugin github name
|
|
|
|
-- '-' -> '_', remove any '.lua', '.nvim' extensions
|
|
|
|
-- this string will be called in a `require`
|
|
|
|
-- use "(custom.configs).my_func()" to call a function
|
|
|
|
-- use "custom.blankline" to call a file
|
|
|
|
default_plugin_config_replace = {
|
|
|
|
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-09-03 16:03:25 +02:00
|
|
|
return M
|