nixvim/plugins/nvim-config-local: init

This commit is contained in:
Gabriel Arazas 2024-02-07 07:54:37 +08:00
parent e5ace891b0
commit cc488eb391
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 44 additions and 0 deletions

View File

@ -2,5 +2,6 @@
imports = [
./keyunmaps.nix
./plugins/firenvim.nix
./plugins/nvim-config-local.nix
];
}

View File

@ -0,0 +1,43 @@
{ config, lib, pkgs, helpers, ... }:
let
cfg = config.plugins.nvim-config-local;
in
{
options.plugins.nvim-config-local =
helpers.neovim-plugin.extraOptionsOptions // {
enable = lib.mkEnableOption "nvim-config-local";
package = helpers.mkPackageOption "nvim-config-local" pkgs.vimPlugins.nvim-config-local;
configFiles = lib.mkOption {
type = with lib.types; listOf str;
default = [ ".nvim.lua" ".nvimrc" ".exrc" ];
example = [ "config/nvim.lua" ];
description = ''
A list of patterns to load (includes Lua configurations).
'';
};
autocommandsCreate = helpers.defaultNullOpts.mkBool true "Create autocommands for sourcing local files.";
commandsCreate = helpers.defaultNullOpts.mkBool true "Create user commands for nvim-config-local.";
lookupParents = helpers.defaultNullOpts.mkBool false "Enable lookup in parent directories when sourcing local configs.";
};
config =
let
setupOptions = {
config_files = cfg.configFiles;
autocommands_create = cfg.autocommandsCreate;
commands_create = cfg.commandsCreate;
lookup_parents = cfg.lookupParents;
} // cfg.extraOptions;
in
lib.mkIf cfg.enable {
extraPlugins = [ cfg.package ];
extraConfigLua = ''
require("config-local").setup(${helpers.toLuaConfig setupOptions})
'';
};
}