Complete overhaul of repo structure based on nvix. See https://github.com/niksingh710/nvix Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
18 lines
298 B
Nix
18 lines
298 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
plugins = {
|
|
lsp.servers.terraformls = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
terraform.path = lib.getExe pkgs.opentofu;
|
|
};
|
|
};
|
|
|
|
conform-nvim.settings = {
|
|
formatters_by_ft = {
|
|
terraform = [ "terraform_fmt" ];
|
|
};
|
|
};
|
|
};
|
|
}
|