2022-05-10 13:43:48 +00:00
|
|
|
_G.nvchad = {}
|
2021-08-22 07:49:15 +00:00
|
|
|
|
2022-05-10 13:43:48 +00:00
|
|
|
nvchad.close_buffer = function(force)
|
2022-05-01 02:31:47 +00: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 07:49:15 +00:00
|
|
|
end
|
|
|
|
|
2022-05-10 13:43:48 +00:00
|
|
|
nvchad.load_config = function()
|
2021-11-15 16:09:35 +00:00
|
|
|
local conf = require "core.default_config"
|
2022-05-14 12:56:55 +00:00
|
|
|
local ignore_modes = { "mode_opts" }
|
2021-08-25 05:28:56 +00:00
|
|
|
|
2022-04-10 11:06:05 +00:00
|
|
|
-- attempt to load and merge a user config
|
|
|
|
local chadrc_exists = vim.fn.filereadable(vim.fn.stdpath "config" .. "/lua/custom/chadrc.lua") == 1
|
|
|
|
if chadrc_exists then
|
|
|
|
-- merge user config if it exists and is a table; otherwise display an error
|
|
|
|
local user_config = require "custom.chadrc"
|
2022-04-27 15:42:28 +00:00
|
|
|
if type(user_config) == "table" then
|
2022-05-14 17:42:02 +00:00
|
|
|
conf.mappings = conf.mappings and nvchad.prune_key_map(conf.mappings, user_config.mappings, ignore_modes) or {}
|
|
|
|
user_config.mappings = user_config.mappings and nvchad.prune_key_map(user_config.mappings, "rm_disabled", ignore_modes) or {}
|
2022-04-10 11:06:05 +00:00
|
|
|
conf = vim.tbl_deep_extend("force", conf, user_config)
|
|
|
|
else
|
2022-04-27 15:42:28 +00:00
|
|
|
error "User config (chadrc.lua) *must* return a table!"
|
2022-04-10 11:06:05 +00:00
|
|
|
end
|
2021-11-17 05:30:57 +00:00
|
|
|
end
|
2021-08-25 05:28:56 +00:00
|
|
|
|
2021-11-15 16:09:35 +00:00
|
|
|
return conf
|
2021-08-25 05:28:56 +00:00
|
|
|
end
|
|
|
|
|
2022-05-14 12:56:55 +00:00
|
|
|
-- reduces a given keymap to a table of modes each containing a list of key maps
|
2022-05-13 23:31:13 +00:00
|
|
|
nvchad.reduce_key_map = function(key_map, ignore_modes)
|
|
|
|
local prune_keys = {}
|
|
|
|
for _, modes in pairs(key_map) do
|
|
|
|
for mode, mappings in pairs(modes) do
|
|
|
|
if not vim.tbl_contains(ignore_modes, mode) then
|
|
|
|
prune_keys[mode] = prune_keys[mode] and prune_keys[mode] or {}
|
|
|
|
prune_keys[mode] = vim.list_extend(prune_keys[mode], vim.tbl_keys(mappings))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return prune_keys
|
|
|
|
end
|
|
|
|
|
2022-05-14 12:56:55 +00:00
|
|
|
-- remove disabled mappings from a given key map
|
|
|
|
nvchad.remove_disabled_mappings = function(key_map)
|
|
|
|
local clean_map = {}
|
|
|
|
if type(key_map) == "table" then
|
|
|
|
for k, v in pairs(key_map) do
|
|
|
|
if v ~= nil and v ~= "" then clean_map[k] = v end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
return key_map
|
|
|
|
end
|
|
|
|
return clean_map
|
|
|
|
end
|
|
|
|
|
2022-05-13 23:31:13 +00:00
|
|
|
-- prune keys from a key map table by matching against another key map table
|
|
|
|
nvchad.prune_key_map = function(key_map, prune_map, ignore_modes)
|
|
|
|
if not prune_map then return key_map end
|
|
|
|
if not key_map then return prune_map end
|
2022-05-14 12:56:55 +00:00
|
|
|
local prune_keys = type(prune_map) == "table" and nvchad.reduce_key_map(prune_map, ignore_modes)
|
|
|
|
or { n = {}, v = {}, i = {}, t = {} }
|
2022-05-13 23:31:13 +00:00
|
|
|
|
|
|
|
for ext, modes in pairs(key_map) do
|
|
|
|
for mode, mappings in pairs(modes) do
|
|
|
|
if not vim.tbl_contains(ignore_modes, mode) then
|
|
|
|
if prune_keys[mode] then
|
|
|
|
-- filter mappings table so that only keys that are not in user_mappings are left
|
|
|
|
local filtered_mappings = {}
|
|
|
|
for k, v in pairs(mappings) do
|
|
|
|
if not vim.tbl_contains(prune_keys[mode], k) then
|
2022-05-14 12:56:55 +00:00
|
|
|
filtered_mappings[k] = nvchad.remove_disabled_mappings(v)
|
2022-05-13 23:31:13 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
key_map[ext][mode] = filtered_mappings
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return key_map
|
|
|
|
end
|
|
|
|
|
2022-05-10 13:43:48 +00:00
|
|
|
nvchad.map = function(mode, keys, command, opt)
|
2022-05-03 14:06:47 +00:00
|
|
|
local options = { silent = true }
|
2022-04-27 15:42:28 +00:00
|
|
|
|
2021-08-25 05:28:56 +00:00
|
|
|
if opt then
|
|
|
|
options = vim.tbl_extend("force", options, opt)
|
|
|
|
end
|
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
if type(keys) == "table" then
|
|
|
|
for _, keymap in ipairs(keys) do
|
2022-05-10 13:43:48 +00:00
|
|
|
nvchad.map(mode, keymap, command, opt)
|
2021-08-25 05:28:56 +00:00
|
|
|
end
|
2022-04-27 15:42:28 +00:00
|
|
|
return
|
2021-08-25 05:28:56 +00:00
|
|
|
end
|
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
vim.keymap.set(mode, keys, command, opt)
|
2021-08-25 05:28:56 +00:00
|
|
|
end
|
|
|
|
|
2022-05-12 12:56:01 +00:00
|
|
|
-- For those who disabled whichkey
|
|
|
|
nvchad.no_WhichKey_map = function()
|
|
|
|
local mappings = nvchad.load_config().mappings
|
2022-05-13 23:31:13 +00:00
|
|
|
local ignore_modes = { "mode_opts" }
|
|
|
|
|
|
|
|
for _, value in pairs(mappings) do
|
|
|
|
for mode, keymap in pairs(value) do
|
|
|
|
if not vim.tbl_contains(ignore_modes, mode) then
|
|
|
|
for keybind, cmd in pairs(keymap) do
|
|
|
|
-- disabled keys will not have cmd set
|
|
|
|
if cmd ~= "" then
|
|
|
|
nvchad.map(mode, keybind, cmd[1])
|
|
|
|
end
|
2022-05-12 12:56:01 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
require("plugins.configs.others").misc_mappings()
|
|
|
|
end
|
|
|
|
|
2021-08-26 09:40:26 +00:00
|
|
|
-- load plugin after entering vim ui
|
2022-05-10 13:43:48 +00:00
|
|
|
nvchad.packer_lazy_load = function(plugin, timer)
|
2021-08-26 09:40:26 +00:00
|
|
|
if plugin then
|
|
|
|
timer = timer or 0
|
|
|
|
vim.defer_fn(function()
|
|
|
|
require("packer").loader(plugin)
|
|
|
|
end, timer)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-04-29 05:04:44 +00:00
|
|
|
-- remove plugins defined in chadrc
|
2022-05-10 13:43:48 +00:00
|
|
|
nvchad.remove_default_plugins = function(plugins)
|
|
|
|
local removals = nvchad.load_config().plugins.remove or {}
|
2022-05-12 13:57:11 +00:00
|
|
|
|
2022-04-29 05:04:44 +00:00
|
|
|
if not vim.tbl_isempty(removals) then
|
2022-05-01 02:31:47 +00:00
|
|
|
for _, plugin in pairs(removals) do
|
|
|
|
plugins[plugin] = nil
|
|
|
|
end
|
2022-04-29 05:04:44 +00:00
|
|
|
end
|
2022-05-12 13:57:11 +00:00
|
|
|
|
2022-04-29 05:04:44 +00:00
|
|
|
return plugins
|
|
|
|
end
|
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
-- merge default/user plugin tables
|
2022-05-10 13:43:48 +00:00
|
|
|
nvchad.plugin_list = function(default_plugins)
|
|
|
|
local user_plugins = nvchad.load_config().plugins.user
|
2021-11-13 17:37:20 +00:00
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
-- merge default + user plugin table
|
|
|
|
default_plugins = vim.tbl_deep_extend("force", default_plugins, user_plugins)
|
2022-01-21 00:12:09 +00:00
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
local final_table = {}
|
2022-01-21 00:12:09 +00:00
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
for key, _ in pairs(default_plugins) do
|
|
|
|
default_plugins[key][1] = key
|
2022-01-31 08:43:51 +00:00
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
final_table[#final_table + 1] = default_plugins[key]
|
2022-01-31 01:28:19 +00:00
|
|
|
end
|
2022-04-27 15:42:28 +00:00
|
|
|
|
|
|
|
return final_table
|
2022-02-13 07:39:07 +00:00
|
|
|
end
|
2022-01-31 08:43:51 +00:00
|
|
|
|
2022-05-10 13:43:48 +00:00
|
|
|
nvchad.load_override = function(default_table, plugin_name)
|
|
|
|
local user_table = nvchad.load_config().plugins.override[plugin_name]
|
2022-05-12 13:57:11 +00:00
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
if type(user_table) == "table" then
|
|
|
|
default_table = vim.tbl_deep_extend("force", default_table, user_table)
|
|
|
|
else
|
|
|
|
default_table = default_table
|
2022-02-13 07:39:07 +00:00
|
|
|
end
|
2022-05-12 13:57:11 +00:00
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
return default_table
|
2022-01-31 01:28:19 +00:00
|
|
|
end
|