-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from ksonj/feature-terraform
languages: add terraform language support
- Loading branch information
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ in { | |
./java.nix | ||
./lua.nix | ||
./php.nix | ||
./terraform.nix | ||
]; | ||
|
||
options.vim.languages = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
pkgs, | ||
config, | ||
lib, | ||
... | ||
}: let | ||
inherit (lib) nvim mkEnableOption mkOption types mkIf mkMerge; | ||
|
||
cfg = config.vim.languages.terraform; | ||
in { | ||
options.vim.languages.terraform = { | ||
enable = mkEnableOption "Terraform/HCL support"; | ||
|
||
treesitter = { | ||
enable = mkEnableOption "Terraform treesitter" // {default = config.vim.languages.enableTreesitter;}; | ||
package = nvim.types.mkGrammarOption pkgs "terraform"; | ||
}; | ||
|
||
lsp = { | ||
enable = mkEnableOption "Terraform LSP support (terraform-ls)" // {default = config.vim.languages.enableLSP;}; | ||
|
||
package = mkOption { | ||
description = "terraform-ls package"; | ||
type = with types; package; | ||
default = pkgs.terraform-ls; | ||
}; | ||
}; | ||
}; | ||
config = mkIf cfg.enable (mkMerge [ | ||
(mkIf cfg.treesitter.enable { | ||
vim.treesitter.enable = true; | ||
vim.treesitter.grammars = [cfg.treesitter.package]; | ||
}) | ||
|
||
(mkIf cfg.lsp.enable { | ||
vim.lsp.lspconfig.enable = true; | ||
vim.lsp.lspconfig.sources.terraform-ls = '' | ||
lspconfig.terraformls.setup { | ||
capabilities = capabilities, | ||
on_attach=default_on_attach, | ||
cmd = {"${cfg.lsp.package}/bin/terraform-ls", "serve"}, | ||
} | ||
''; | ||
}) | ||
]); | ||
} |