2022-05-10 15:43:48 +02:00
|
|
|
_G.nvchad = {}
|
2021-08-22 09:49:15 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
local merge_tb = vim.tbl_deep_extend
|
|
|
|
|
2022-05-10 15:43:48 +02:00
|
|
|
nvchad.close_buffer = function(force)
|
2022-05-01 04:31:47 +02:00
|
|
|
if vim.bo.buftype == "terminal" then
|
|
|
|
vim.api.nvim_win_hide(0)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local fileExists = vim.fn.filereadable(vim.fn.expand "%p")
|
|
|
|
local modified = vim.api.nvim_buf_get_option(vim.fn.bufnr(), "modified")
|
|
|
|
|
|
|
|
-- if file doesnt exist & its modified
|
|
|
|
if fileExists == 0 and modified then
|
|
|
|
print "no file name? add it now!"
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
force = force or not vim.bo.buflisted or vim.bo.buftype == "nofile"
|
|
|
|
|
|
|
|
-- if not force, change to prev buf and then close current
|
|
|
|
local close_cmd = force and ":bd!" or ":bp | bd" .. vim.fn.bufnr()
|
|
|
|
vim.cmd(close_cmd)
|
2021-08-22 09:49:15 +02:00
|
|
|
end
|
|
|
|
|
2022-05-10 15:43:48 +02:00
|
|
|
nvchad.load_config = function()
|
2022-05-29 11:38:53 +02:00
|
|
|
local config = require "core.default_config"
|
|
|
|
local chadrc_exists, chadrc = pcall(require, "custom.chadrc")
|
2022-05-23 09:24:03 +02:00
|
|
|
|
2022-04-10 13:06:05 +02:00
|
|
|
if chadrc_exists then
|
|
|
|
-- merge user config if it exists and is a table; otherwise display an error
|
2022-05-29 11:38:53 +02:00
|
|
|
if type(chadrc) == "table" then
|
|
|
|
nvchad.remove_default_keys()
|
|
|
|
config = merge_tb("force", config, chadrc)
|
2022-04-10 13:06:05 +02:00
|
|
|
else
|
2022-05-29 11:38:53 +02:00
|
|
|
error "chadrc must return a table!"
|
2022-04-10 13:06:05 +02:00
|
|
|
end
|
2021-11-17 06:30:57 +01:00
|
|
|
end
|
2021-08-25 07:28:56 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
config.mappings.disabled = nil
|
|
|
|
return config
|
2021-08-25 07:28:56 +02:00
|
|
|
end
|
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
nvchad.remove_default_keys = function()
|
|
|
|
local chadrc = require "custom.chadrc"
|
|
|
|
local user_mappings = chadrc.mappings or {}
|
|
|
|
local user_keys = {}
|
|
|
|
local user_sections = vim.tbl_keys(user_mappings)
|
2022-05-23 09:24:03 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
-- push user_map keys in user_keys table
|
|
|
|
for _, section in ipairs(user_sections) do
|
|
|
|
user_keys = vim.tbl_deep_extend("force", user_keys, user_mappings[section])
|
2022-05-14 01:31:13 +02:00
|
|
|
end
|
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
local function disable_key(mode, keybind, mode_mapping)
|
|
|
|
local keys_in_mode = vim.tbl_keys(user_keys[mode] or {})
|
2022-05-23 09:24:03 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
if vim.tbl_contains(keys_in_mode, keybind) then
|
|
|
|
mode_mapping[keybind] = nil
|
2022-05-14 14:56:55 +02:00
|
|
|
end
|
|
|
|
end
|
2022-05-23 09:24:03 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
local default_mappings = require("core.default_config").mappings
|
2022-05-14 14:56:55 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
-- remove user_maps from default mapping table
|
|
|
|
for _, section_mappings in pairs(default_mappings) do
|
|
|
|
for mode, mode_mapping in pairs(section_mappings) do
|
|
|
|
for keybind, _ in pairs(mode_mapping) do
|
|
|
|
disable_key(mode, keybind, mode_mapping)
|
2022-05-14 01:31:13 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
nvchad.load_mappings = function(mappings, mapping_opt)
|
|
|
|
mappings = mappings or nvchad.load_config().mappings
|
2022-04-27 17:42:28 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
-- set mapping function with/without whichkye
|
|
|
|
local map_func
|
|
|
|
local whichkey_exists, wk = pcall(require, "which-key")
|
2021-08-25 07:28:56 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
if whichkey_exists then
|
|
|
|
map_func = function(keybind, mapping_info, opts)
|
|
|
|
wk.register({ [keybind] = mapping_info }, opts)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
map_func = function(keybind, mapping_info, opts)
|
|
|
|
local mode = opts.mode
|
|
|
|
opts.mode = nil
|
|
|
|
vim.keymap.set(mode, keybind, mapping_info[1], opts)
|
2021-08-25 07:28:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
mappings.lspconfig = nil
|
2021-08-25 07:28:56 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
for _, section_mappings in pairs(mappings) do
|
|
|
|
-- skip mapping this as its mapppings are loaded in lspconfiguti
|
|
|
|
for mode, mode_mappings in pairs(section_mappings) do
|
|
|
|
for keybind, mapping_info in pairs(mode_mappings) do
|
|
|
|
-- merge default + user opts
|
2022-05-25 01:16:08 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
local default_opts = merge_tb("force", { mode = mode }, mapping_opt or {})
|
|
|
|
local opts = merge_tb("force", default_opts, mapping_info.opts or {})
|
2022-05-25 01:16:08 +02:00
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
if mapping_info.opts then
|
|
|
|
mapping_info.opts = nil
|
2022-05-25 01:16:08 +02:00
|
|
|
end
|
|
|
|
|
2022-05-29 11:38:53 +02:00
|
|
|
map_func(keybind, mapping_info, opts)
|
2022-05-12 14:56:01 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-08-26 11:40:26 +02:00
|
|
|
-- load plugin after entering vim ui
|
2022-05-10 15:43:48 +02:00
|
|
|
nvchad.packer_lazy_load = function(plugin, timer)
|
2021-08-26 11:40:26 +02:00
|
|
|
if plugin then
|
|
|
|
timer = timer or 0
|
|
|
|
vim.defer_fn(function()
|
|
|
|
require("packer").loader(plugin)
|
|
|
|
end, timer)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-04-29 07:04:44 +02:00
|
|
|
-- remove plugins defined in chadrc
|
2022-05-10 15:43:48 +02:00
|
|
|
nvchad.remove_default_plugins = function(plugins)
|
|
|
|
local removals = nvchad.load_config().plugins.remove or {}
|
2022-05-12 15:57:11 +02:00
|
|
|
|
2022-04-29 07:04:44 +02:00
|
|
|
if not vim.tbl_isempty(removals) then
|
2022-05-01 04:31:47 +02:00
|
|
|
for _, plugin in pairs(removals) do
|
|
|
|
plugins[plugin] = nil
|
|
|
|
end
|
2022-04-29 07:04:44 +02:00
|
|
|
end
|
2022-05-12 15:57:11 +02:00
|
|
|
|
2022-04-29 07:04:44 +02:00
|
|
|
return plugins
|
|
|
|
end
|
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
-- merge default/user plugin tables
|
2022-05-23 09:24:03 +02:00
|
|
|
nvchad.merge_plugins = function(default_plugins)
|
2022-05-10 15:43:48 +02:00
|
|
|
local user_plugins = nvchad.load_config().plugins.user
|
2021-11-13 18:37:20 +01:00
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
-- merge default + user plugin table
|
2022-05-29 11:38:53 +02:00
|
|
|
default_plugins = merge_tb("force", default_plugins, user_plugins)
|
2022-01-21 01:12:09 +01:00
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
local final_table = {}
|
2022-01-21 01:12:09 +01:00
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
for key, _ in pairs(default_plugins) do
|
|
|
|
default_plugins[key][1] = key
|
2022-01-31 09:43:51 +01:00
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
final_table[#final_table + 1] = default_plugins[key]
|
2022-01-31 02:28:19 +01:00
|
|
|
end
|
2022-04-27 17:42:28 +02:00
|
|
|
|
|
|
|
return final_table
|
2022-02-13 08:39:07 +01:00
|
|
|
end
|
2022-01-31 09:43:51 +01:00
|
|
|
|
2022-05-10 15:43:48 +02:00
|
|
|
nvchad.load_override = function(default_table, plugin_name)
|
|
|
|
local user_table = nvchad.load_config().plugins.override[plugin_name]
|
2022-05-12 15:57:11 +02:00
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
if type(user_table) == "table" then
|
2022-05-29 11:38:53 +02:00
|
|
|
default_table = merge_tb("force", default_table, user_table)
|
2022-04-27 17:42:28 +02:00
|
|
|
else
|
|
|
|
default_table = default_table
|
2022-02-13 08:39:07 +01:00
|
|
|
end
|
2022-05-12 15:57:11 +02:00
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
return default_table
|
2022-01-31 02:28:19 +01:00
|
|
|
end
|