mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 19:25:58 +01:00
cleanup, add formatter
This commit is contained in:
parent
037075f52d
commit
ce9d7ee870
1 changed files with 59 additions and 14 deletions
|
@ -4,12 +4,42 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
|
inherit (builtins) attrNames;
|
||||||
inherit (lib.options) mkEnableOption mkOption;
|
inherit (lib.options) mkEnableOption mkOption;
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.types) package;
|
inherit (lib.types) package bool enum;
|
||||||
inherit (lib.nvim.types) mkGrammarOption;
|
inherit (lib.nvim.types) mkGrammarOption;
|
||||||
|
|
||||||
cfg = config.vim.languages.hcl;
|
cfg = config.vim.languages.hcl;
|
||||||
|
|
||||||
|
defaultServer = "terraform-ls";
|
||||||
|
servers = {
|
||||||
|
terraform-ls = rec {
|
||||||
|
package = pkgs.terraform-ls;
|
||||||
|
lspConfig = ''
|
||||||
|
lspconfig.terraformls.setup {
|
||||||
|
capabilities = capabilities,
|
||||||
|
on_attach=default_on_attach,
|
||||||
|
cmd = {"${lib.getExe package}", "serve"},
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
defaultFormat = "hclfmt";
|
||||||
|
formats = {
|
||||||
|
hclfmt = rec {
|
||||||
|
package = pkgs.hclfmt;
|
||||||
|
nullConfig = ''
|
||||||
|
table.insert(
|
||||||
|
ls_sources,
|
||||||
|
null_ls.builtins.formatting.hclfmt.with({
|
||||||
|
command = "${lib.getExe package}",
|
||||||
|
})
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
options.vim.languages.hcl = {
|
options.vim.languages.hcl = {
|
||||||
enable = mkEnableOption "HCL support";
|
enable = mkEnableOption "HCL support";
|
||||||
|
@ -21,17 +51,33 @@ in {
|
||||||
|
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = mkEnableOption "HCL LSP support (terraform-ls)" // {default = config.vim.languages.enableLSP;};
|
enable = mkEnableOption "HCL LSP support (terraform-ls)" // {default = config.vim.languages.enableLSP;};
|
||||||
# TODO: it would be cooler to use vscode-extensions.hashicorp.hcl probably, shouldn't be too hard
|
# TODO: (maybe, is it better?) it would be cooler to use vscode-extensions.hashicorp.hcl probably, shouldn't be too hard
|
||||||
# TODO: formatter, suppied by above or ...
|
|
||||||
# FIXME: or should we somehow integrate this:
|
|
||||||
#` https://git.mzte.de/nvim-plugins/null-ls.nvim/commit/e1fb7e2b2e4400835e23b9603a19813be119852b ??
|
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
description = "HCL ls package (terraform-ls)";
|
description = "HCL language server package (terraform-ls)";
|
||||||
type = package;
|
type = package;
|
||||||
default = pkgs.terraform-ls;
|
default = servers.${defaultServer}.package;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
format = {
|
||||||
|
enable = mkOption {
|
||||||
|
description = "Enable HCL formatting";
|
||||||
|
type = bool;
|
||||||
|
default = config.vim.languages.enableFormat;
|
||||||
|
};
|
||||||
|
type = mkOption {
|
||||||
|
description = "HCL formatter to use";
|
||||||
|
type = enum (attrNames formats);
|
||||||
|
default = defaultFormat;
|
||||||
|
};
|
||||||
|
package = mkOption {
|
||||||
|
description = "HCL formatter package";
|
||||||
|
type = package;
|
||||||
|
default = formats.${cfg.format.type}.package;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable (mkMerge [
|
config = mkIf cfg.enable (mkMerge [
|
||||||
{
|
{
|
||||||
vim.pluginRC.hcl = ''
|
vim.pluginRC.hcl = ''
|
||||||
|
@ -58,14 +104,13 @@ in {
|
||||||
(mkIf cfg.lsp.enable {
|
(mkIf cfg.lsp.enable {
|
||||||
vim.lsp.lspconfig.enable = true;
|
vim.lsp.lspconfig.enable = true;
|
||||||
vim.lsp.lspconfig.sources = lib.optionalAttrs (! config.vim.languages.terraform.lsp.enable) {
|
vim.lsp.lspconfig.sources = lib.optionalAttrs (! config.vim.languages.terraform.lsp.enable) {
|
||||||
terraform-ls = ''
|
terraform-ls = servers.${cfg.lsp.server}.lspConfig;
|
||||||
lspconfig.terraformls.setup {
|
|
||||||
capabilities = capabilities,
|
|
||||||
on_attach=default_on_attach,
|
|
||||||
cmd = {"${cfg.lsp.package}/bin/terraform-ls", "serve"},
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
(mkIf cfg.format.enable {
|
||||||
|
vim.lsp.null-ls.enable = true;
|
||||||
|
vim.lsp.null-ls.sources.hcl-format = formats.${cfg.format.type}.nullConfig;
|
||||||
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue