mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
f9789432f9
* modules: switch to gerg's neovim-wrapper * modules: use initViml instead of writing the file * treewide: make the entire generated config lua based * docs: remove mentions of configRC * plugins/treesitter: remove vim.cmd hack * treewide: move resolveDag to lib * modules/wrapper(rc): fix typo * treewide: migrate to pluginRC for correct DAG order The "new" DAG order is as follows: - (luaConfigPre) - globalsScript - basic - theme - pluginConfigs - extraPluginConfigs - mappings - (luaConfigPost) * plugins/theme: fix theme DAG place * plugins/theme: fix fixed theme DAG place * modules/wrapper(rc): add removed option module for configRC * docs: add dag-entries chapter, add release note entry * fix: formatting CI * languages/nix: add missing `local` * docs: fix page link * docs: add mention of breaking changes at the start of the release notes * plugins/neo-tree: convert to pluginRC * modules/wrapper(rc): add back entryAnywhere * modules/wrapper(rc): expose pluginRC * apply raf patch --------- Co-authored-by: NotAShelf <raf@notashelf.dev>
93 lines
2.8 KiB
Nix
93 lines
2.8 KiB
Nix
# Helpers for converting values to lua
|
|
{lib}: let
|
|
inherit (builtins) hasAttr head throw typeOf isList isAttrs isBool isInt isString isPath isFloat toJSON;
|
|
inherit (lib.attrsets) mapAttrsToList filterAttrs;
|
|
inherit (lib.strings) concatStringsSep concatMapStringsSep stringToCharacters concatLines;
|
|
inherit (lib.trivial) boolToString warn;
|
|
in rec {
|
|
# Convert a null value to lua's nil
|
|
nullString = value:
|
|
if value == null
|
|
then "nil"
|
|
else "'${value}'";
|
|
|
|
# convert an expression to lua
|
|
expToLua = exp:
|
|
if isList exp
|
|
then listToLuaTable exp # if list, convert to lua table
|
|
else if isAttrs exp
|
|
then attrsetToLuaTable exp # if attrs, convert to table
|
|
else if isBool exp
|
|
then boolToString exp # if bool, convert to string
|
|
else if isInt exp
|
|
then toString exp # if int, convert to string
|
|
else if exp == null
|
|
then "nil"
|
|
else (toJSON exp); # otherwise jsonify the value and print as is
|
|
|
|
# convert list to a lua table
|
|
listToLuaTable = list:
|
|
"{ " + (concatStringsSep ", " (map expToLua list)) + " }";
|
|
|
|
# convert attrset to a lua table
|
|
attrsetToLuaTable = attrset:
|
|
"{ "
|
|
+ (
|
|
concatStringsSep ", "
|
|
(
|
|
mapAttrsToList (
|
|
name: value:
|
|
name
|
|
+ " = "
|
|
+ (expToLua value)
|
|
)
|
|
attrset
|
|
)
|
|
)
|
|
+ " }";
|
|
# Convert a list of lua expressions to a lua table. The difference to listToLuaTable is that the elements here are expected to be lua expressions already, whereas listToLuaTable converts from nix types to lua first
|
|
luaTable = items: ''{${concatStringsSep "," items}}'';
|
|
|
|
isLuaInline = object: (object._type or null) == "lua-inline";
|
|
|
|
toLuaObject = args:
|
|
if isAttrs args
|
|
then
|
|
if isLuaInline args
|
|
then args.expr
|
|
else if hasAttr "__empty" args
|
|
then
|
|
warn ''
|
|
Using `__empty` to define an empty lua table is deprecated. Use an empty attrset instead.
|
|
'' "{ }"
|
|
else
|
|
"{"
|
|
+ (concatStringsSep ","
|
|
(mapAttrsToList
|
|
(n: v:
|
|
if head (stringToCharacters n) == "@"
|
|
then toLuaObject v
|
|
else "[${toLuaObject n}] = " + (toLuaObject v))
|
|
(filterAttrs
|
|
(_: v: v != null)
|
|
args)))
|
|
+ "}"
|
|
else if isList args
|
|
then "{" + concatMapStringsSep "," toLuaObject args + "}"
|
|
else if isString args
|
|
then
|
|
# This should be enough!
|
|
toJSON args
|
|
else if isPath args
|
|
then toJSON (toString args)
|
|
else if isBool args
|
|
then "${boolToString args}"
|
|
else if isFloat args
|
|
then "${toString args}"
|
|
else if isInt args
|
|
then "${toString args}"
|
|
else if (args == null)
|
|
then "nil"
|
|
else throw "could not convert object of type `${typeOf args}` to lua object";
|
|
}
|