2024-04-20 23:10:06 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
2024-10-06 09:23:01 +00:00
|
|
|
inherit (builtins) map mapAttrs filter;
|
2024-09-30 19:57:03 +00:00
|
|
|
inherit (lib.attrsets) mapAttrsToList;
|
|
|
|
inherit (lib.strings) concatLines concatMapStringsSep optionalString;
|
2024-04-20 23:10:06 +00:00
|
|
|
inherit (lib.trivial) showWarnings;
|
|
|
|
inherit (lib.generators) mkLuaInline;
|
2024-07-20 08:30:48 +00:00
|
|
|
inherit (lib.nvim.dag) entryAfter mkLuarcSection resolveDag entryAnywhere;
|
|
|
|
inherit (lib.nvim.lua) toLuaObject;
|
2024-04-20 23:10:06 +00:00
|
|
|
|
|
|
|
cfg = config.vim;
|
|
|
|
in {
|
|
|
|
config = let
|
|
|
|
globalsScript =
|
2024-09-28 18:28:17 +00:00
|
|
|
mapAttrsToList (name: value: "vim.g.${name} = ${toLuaObject value}") cfg.globals;
|
|
|
|
|
|
|
|
optionsScript =
|
|
|
|
mapAttrsToList (name: value: "vim.o.${name} = ${toLuaObject value}") cfg.options;
|
2024-04-20 23:10:06 +00:00
|
|
|
|
2024-07-20 08:30:48 +00:00
|
|
|
extraPluginConfigs = resolveDag {
|
|
|
|
name = "extra plugin configs";
|
|
|
|
dag = mapAttrs (_: value: entryAfter value.after value.setup) cfg.extraPlugins;
|
|
|
|
mapResult = result: concatLines (map mkLuarcSection result);
|
|
|
|
};
|
|
|
|
|
|
|
|
pluginConfigs = resolveDag {
|
|
|
|
name = "plugin configs";
|
|
|
|
dag = cfg.pluginRC;
|
|
|
|
mapResult = result: concatLines (map mkLuarcSection result);
|
|
|
|
};
|
|
|
|
|
2024-08-12 00:07:45 +00:00
|
|
|
getAction = keymap:
|
|
|
|
if keymap.lua
|
|
|
|
then mkLuaInline keymap.action
|
|
|
|
else keymap.action;
|
|
|
|
|
|
|
|
getOpts = keymap: {
|
2024-08-17 11:08:47 +00:00
|
|
|
inherit (keymap) desc silent nowait script expr unique noremap;
|
2024-08-12 00:07:45 +00:00
|
|
|
};
|
2024-04-20 23:10:06 +00:00
|
|
|
|
2024-10-06 09:23:01 +00:00
|
|
|
toLuaKeymap = bind: "vim.keymap.set(${toLuaObject bind.mode}, ${toLuaObject bind.key}, ${toLuaObject (getAction bind)}, ${toLuaObject (getOpts bind)})";
|
2024-04-20 23:10:06 +00:00
|
|
|
|
2024-10-06 09:23:01 +00:00
|
|
|
keymaps = concatLines (map toLuaKeymap cfg.keymaps);
|
2024-04-20 23:10:06 +00:00
|
|
|
in {
|
|
|
|
vim = {
|
2024-07-20 08:30:48 +00:00
|
|
|
luaConfigRC = {
|
2024-09-28 18:28:17 +00:00
|
|
|
# `vim.g` and `vim.o`
|
2024-07-08 21:57:58 +00:00
|
|
|
globalsScript = entryAnywhere (concatLines globalsScript);
|
2024-09-28 18:28:17 +00:00
|
|
|
optionsScript = entryAfter ["basic"] (concatLines optionsScript);
|
|
|
|
|
|
|
|
# Basic
|
|
|
|
pluginConfigs = entryAfter ["optionsScript"] pluginConfigs;
|
2024-07-20 08:30:48 +00:00
|
|
|
extraPluginConfigs = entryAfter ["pluginConfigs"] extraPluginConfigs;
|
2024-08-12 00:07:45 +00:00
|
|
|
mappings = entryAfter ["extraPluginConfigs"] keymaps;
|
2024-09-30 19:57:03 +00:00
|
|
|
# FIXME: put this somewhere less stupid
|
|
|
|
footer = entryAfter ["mappings"] (optionalString config.vim.lazy.enable "require('lzn-auto-require').enable()");
|
2024-04-20 23:10:06 +00:00
|
|
|
};
|
|
|
|
|
2024-07-20 08:30:48 +00:00
|
|
|
builtLuaConfigRC = let
|
2024-04-20 23:10:06 +00:00
|
|
|
# Catch assertions and warnings
|
|
|
|
# and throw for each failed assertion. If no assertions are found, show warnings.
|
|
|
|
failedAssertions = map (x: x.message) (filter (x: !x.assertion) config.assertions);
|
|
|
|
baseSystemAssertWarn =
|
|
|
|
if failedAssertions != []
|
2024-07-08 21:57:58 +00:00
|
|
|
then throw "\nFailed assertions:\n${concatMapStringsSep "\n" (x: "- ${x}") failedAssertions}"
|
2024-04-20 23:10:06 +00:00
|
|
|
else showWarnings config.warnings;
|
|
|
|
|
2024-07-20 08:30:48 +00:00
|
|
|
luaConfig = resolveDag {
|
|
|
|
name = "lua config script";
|
|
|
|
dag = cfg.luaConfigRC;
|
|
|
|
mapResult = result:
|
|
|
|
concatLines [
|
|
|
|
cfg.luaConfigPre
|
|
|
|
(concatMapStringsSep "\n" mkLuarcSection result)
|
|
|
|
cfg.luaConfigPost
|
|
|
|
];
|
2024-04-20 23:10:06 +00:00
|
|
|
};
|
|
|
|
in
|
2024-07-20 08:30:48 +00:00
|
|
|
baseSystemAssertWarn luaConfig;
|
2024-04-20 23:10:06 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|