2024-04-20 23:10:06 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (lib.options) mkOption mkEnableOption literalMD literalExpression;
|
|
|
|
inherit (lib.strings) optionalString;
|
2024-04-20 23:27:42 +00:00
|
|
|
inherit (lib.types) str oneOf attrs lines listOf either path;
|
2024-04-20 23:10:06 +00:00
|
|
|
inherit (lib.nvim.types) dagOf;
|
|
|
|
inherit (lib.nvim.lua) listToLuaTable;
|
|
|
|
cfg = config.vim;
|
|
|
|
in {
|
|
|
|
options.vim = {
|
|
|
|
enableLuaLoader = mkEnableOption ''
|
|
|
|
the experimental Lua module loader to speed up the start up process
|
|
|
|
'';
|
|
|
|
|
|
|
|
additionalRuntimePaths = mkOption {
|
|
|
|
type = listOf (either path str);
|
|
|
|
default = [];
|
|
|
|
example = literalExpression ''
|
|
|
|
[
|
|
|
|
"~/.config/nvim-extra" # absolute path, as a string - impure
|
|
|
|
./nvim # relative path, as a path - pure
|
|
|
|
]
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Additional runtime paths that will be appended to the
|
|
|
|
active runtimepath of the Neovim. This can be used to
|
|
|
|
add additional lookup paths for configs, plugins, spell
|
|
|
|
languages and other things you would generally place in
|
|
|
|
your `$HOME/.config/nvim`.
|
|
|
|
|
|
|
|
This is meant as a declarative alternative to throwing
|
|
|
|
files into `~/.config/nvim` and having the Neovim
|
|
|
|
wrapper pick them up. For more details on
|
|
|
|
`vim.o.runtimepath`, and what paths to use; please see
|
|
|
|
[the official documentation](https://neovim.io/doc/user/options.html#'runtimepath')
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
globals = mkOption {
|
|
|
|
default = {};
|
|
|
|
type = attrs;
|
|
|
|
description = "Set containing global variable values";
|
|
|
|
};
|
|
|
|
|
|
|
|
configRC = mkOption {
|
|
|
|
type = oneOf [(dagOf lines) str];
|
|
|
|
default = {};
|
|
|
|
description = ''
|
|
|
|
Contents of vimrc, either as a string or a DAG.
|
|
|
|
|
|
|
|
If this option is passed as a DAG, it will be resolved
|
|
|
|
according to the DAG resolution rules (e.g. entryBefore
|
|
|
|
or entryAfter) as per the neovim-flake library.
|
|
|
|
'';
|
|
|
|
|
|
|
|
example = literalMD ''
|
|
|
|
```vim
|
|
|
|
" Set the tab size to 4 spaces
|
|
|
|
set tabstop=4
|
|
|
|
set shiftwidth=4
|
|
|
|
set expandtab
|
|
|
|
```
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
luaConfigPre = mkOption {
|
|
|
|
type = str;
|
|
|
|
default = ''
|
|
|
|
${optionalString (cfg.additionalRuntimePaths != []) ''
|
|
|
|
-- The following list is generated from `vim.additionalRuntimePaths`
|
|
|
|
-- and is used to append additional runtime paths to the
|
|
|
|
-- `runtimepath` option.
|
|
|
|
local additionalRuntimePaths = ${listToLuaTable cfg.additionalRuntimePaths};
|
|
|
|
|
|
|
|
for _, path in ipairs(additionalRuntimePaths) do
|
|
|
|
vim.opt.runtimepath:append(path)
|
|
|
|
end
|
|
|
|
''}
|
|
|
|
|
|
|
|
${optionalString cfg.enableLuaLoader "vim.loader.enable()"}
|
|
|
|
'';
|
|
|
|
|
|
|
|
defaultText = literalMD ''
|
|
|
|
By default, this option will **append** paths in
|
|
|
|
[vim.additionalRuntimePaths](#opt-vim.additionalRuntimePaths)
|
|
|
|
to the `runtimepath` and enable the experimental Lua module loader
|
|
|
|
if [vim.enableLuaLoader](#opt-vim.enableLuaLoader) is set to true.
|
|
|
|
'';
|
|
|
|
|
|
|
|
example = literalExpression ''"$${builtins.readFile ./my-lua-config-pre.lua}"'';
|
|
|
|
|
|
|
|
description = ''
|
|
|
|
Verbatim lua code that will be inserted **before**
|
|
|
|
the result of `luaConfigRc` DAG has been resolved.
|
|
|
|
|
|
|
|
This option **does not** take a DAG set, but a string
|
|
|
|
instead. Useful when you'd like to insert contents
|
|
|
|
of lua configs after the DAG result.
|
|
|
|
|
|
|
|
::: {.warning}
|
|
|
|
You do not want to override this option with mkForce
|
|
|
|
It is used internally to set certain options as early
|
|
|
|
as possible and should be avoided unless you know what
|
|
|
|
you're doing. Passing a string to this option will
|
|
|
|
merge it with the default contents.
|
|
|
|
:::
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
luaConfigRC = mkOption {
|
|
|
|
type = oneOf [(dagOf lines) str];
|
|
|
|
default = {};
|
|
|
|
description = ''
|
|
|
|
Lua configuration, either as a string or a DAG.
|
|
|
|
|
|
|
|
If this option is passed as a DAG, it will be resolved
|
|
|
|
according to the DAG resolution rules (e.g. entryBefore
|
|
|
|
or entryAfter) as per the neovim-flake library.
|
|
|
|
'';
|
|
|
|
|
|
|
|
example = literalMD ''
|
|
|
|
```lua
|
|
|
|
-- Set the tab size to 4 spaces
|
|
|
|
vim.opt.tabstop = 4
|
|
|
|
vim.opt.shiftwidth = 4
|
|
|
|
vim.opt.expandtab = true
|
|
|
|
```
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
luaConfigPost = mkOption {
|
|
|
|
type = str;
|
|
|
|
default = "";
|
|
|
|
example = literalExpression ''"$${builtins.readFile ./my-lua-config-post.lua}"'';
|
|
|
|
description = ''
|
|
|
|
Verbatim lua code that will be inserted **after**
|
|
|
|
the result of the `luaConfigRc` DAG has been resolved
|
|
|
|
|
|
|
|
This option **does not** take a DAG set, but a string
|
|
|
|
instead. Useful when you'd like to insert contents
|
|
|
|
of lua configs after the DAG result.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
builtConfigRC = mkOption {
|
|
|
|
internal = true;
|
|
|
|
type = lines;
|
|
|
|
description = "The built config for neovim after resolving the DAG";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|