neovim-flake/modules/plugins/languages/lua.nix

71 lines
2.0 KiB
Nix
Raw Normal View History

2023-09-23 01:12:31 +02:00
{
config,
pkgs,
2023-09-23 01:12:31 +02:00
lib,
...
}: let
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.modules) mkIf mkMerge;
inherit (lib.meta) getExe;
inherit (lib.lists) isList;
inherit (lib.strings) optionalString;
inherit (lib.types) either listOf package str;
inherit (lib.nvim.types) mkGrammarOption;
inherit (lib.nvim.lua) expToLua;
inherit (lib.nvim.dag) entryBefore;
2023-09-23 15:36:26 +02:00
cfg = config.vim.languages.lua;
2023-09-23 01:12:31 +02:00
in {
options.vim.languages.lua = {
2023-09-23 15:36:26 +02:00
enable = mkEnableOption "Lua language support";
2023-09-23 01:12:31 +02:00
treesitter = {
enable = mkEnableOption "Lua Treesitter support" // {default = config.vim.languages.enableTreesitter;};
package = mkGrammarOption pkgs "lua";
2023-09-23 01:12:31 +02:00
};
2023-09-23 01:12:31 +02:00
lsp = {
enable = mkEnableOption "Lua LSP support via LuaLS" // {default = config.vim.languages.enableLSP;};
2023-09-23 01:12:31 +02:00
package = mkOption {
2023-09-23 15:36:26 +02:00
description = "LuaLS package, or the command to run as a list of strings";
type = either package (listOf str);
2023-09-23 15:36:26 +02:00
default = pkgs.lua-language-server;
2023-09-23 01:12:31 +02:00
};
2023-09-23 15:36:26 +02:00
neodev.enable = mkEnableOption "neodev.nvim integration, useful for neovim plugin developers";
2023-09-23 01:12:31 +02:00
};
};
config = mkMerge [
2023-09-23 15:36:26 +02:00
(mkIf cfg.treesitter.enable {
vim.treesitter.enable = true;
vim.treesitter.grammars = [cfg.treesitter.package];
})
(mkIf cfg.enable (mkMerge [
(mkIf cfg.lsp.enable {
vim.lsp.lspconfig.enable = true;
vim.lsp.lspconfig.sources.lua-lsp = ''
lspconfig.lua_ls.setup {
capabilities = capabilities;
on_attach = default_on_attach;
${optionalString cfg.lsp.neodev.enable "before_init = require('neodev.lsp').before_init;"}
cmd = ${
if isList cfg.lsp.package
then expToLua cfg.lsp.package
else ''{"${getExe cfg.lsp.package}"}''
};
}
'';
})
2023-09-23 01:12:31 +02:00
(mkIf cfg.lsp.neodev.enable {
vim.startPlugins = ["neodev-nvim"];
vim.pluginRC.neodev = entryBefore ["lua-lsp"] ''
require("neodev").setup({})
'';
})
]))
];
2023-09-23 01:12:31 +02:00
}