feat: use mkGrammarOption

This commit is contained in:
NotAShelf 2023-04-18 00:55:27 +03:00
parent 84ecf8f3fd
commit 544792e0b9
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
13 changed files with 31 additions and 47 deletions

View file

@ -115,6 +115,7 @@ inputs: let
vim.git = { vim.git = {
enable = true; enable = true;
gitsigns.enable = true; gitsigns.enable = true;
gitsigns.codeActions = true;
}; };
vim.minimap = { vim.minimap = {

View file

@ -5,5 +5,5 @@
in { in {
inherit (typesDag) dagOf; inherit (typesDag) dagOf;
inherit (typesPlugin) pluginsOpt; inherit (typesPlugin) pluginsOpt;
inherit (typesLanguage) diagnostics; inherit (typesLanguage) diagnostics mkGrammarOption;
} }

View file

@ -23,4 +23,9 @@ in {
type = with types; listOf (either (enum (attrNames diagnostics)) (submodule diagnosticSubmodule)); type = with types; listOf (either (enum (attrNames diagnostics)) (submodule diagnosticSubmodule));
default = defaultDiagnostics; default = defaultDiagnostics;
}; };
mkGrammarOption = pkgs: grammar:
mkPackageOption pkgs ["${grammar} treesitter"] {
default = ["vimPlugins" "nvim-treesitter" "builtGrammars" grammar];
};
} }

View file

@ -41,16 +41,8 @@ in {
type = types.bool; type = types.bool;
default = config.vim.languages.enableTreesitter; default = config.vim.languages.enableTreesitter;
}; };
cPackage = mkOption { cPackage = nvim.types.mkGrammarOption pkgs "c";
description = "C treesitter grammar to use"; cppPackage = nvim.types.mkGrammarOption pkgs "cpp";
type = types.package;
default = pkgs.vimPlugins.nvim-treesitter.builtGrammars.c;
};
cppPackage = mkOption {
description = "C++ treesitter grammar to use";
type = types.package;
default = pkgs.vimPlugins.nvim-treesitter.builtGrammars.cpp;
};
}; };
lsp = { lsp = {

View file

@ -8,7 +8,7 @@ with lib; let
}; };
in { in {
imports = [ imports = [
./markdown ./markdown
./tidal ./tidal
./clang.nix ./clang.nix

View file

@ -31,11 +31,7 @@ in {
type = types.bool; type = types.bool;
default = config.vim.languages.enableTreesitter; default = config.vim.languages.enableTreesitter;
}; };
package = mkOption { package = nvim.types.mkGrammarOption pkgs "go";
description = "Go treesitter grammar to use";
type = types.package;
default = pkgs.vimPlugins.nvim-treesitter.builtGrammars.go;
};
}; };
lsp = { lsp = {

View file

@ -9,6 +9,11 @@ with builtins; let
cfg = config.vim.languages.markdown; cfg = config.vim.languages.markdown;
in { in {
config = mkIf cfg.enable (mkMerge [ config = mkIf cfg.enable (mkMerge [
(mkIf cfg.treesitter.enable {
vim.treesitter.enable = true;
vim.treesitter.grammars = [cfg.treesitter.package];
})
(mkIf cfg.glow.enable { (mkIf cfg.glow.enable {
vim.startPlugins = ["glow-nvim"]; vim.startPlugins = ["glow-nvim"];

View file

@ -16,5 +16,14 @@ in {
default = true; default = true;
description = "Enable markdown preview in neovim with glow"; description = "Enable markdown preview in neovim with glow";
}; };
treesitter = {
enable = mkOption {
description = "Enable Markdown treesitter";
type = types.bool;
default = config.vim.languages.enableTreesitter;
};
package = nvim.types.mkGrammarOption pkgs "markdown";
};
}; };
} }

View file

@ -92,11 +92,7 @@ in {
type = types.bool; type = types.bool;
default = config.vim.languages.enableTreesitter; default = config.vim.languages.enableTreesitter;
}; };
package = mkOption { package = nvim.types.mkGrammarOption pkgs "nix";
description = "Nix treesitter grammar to use";
type = types.package;
default = pkgs.vimPlugins.nvim-treesitter.builtGrammars.nix;
};
}; };
lsp = { lsp = {

View file

@ -64,11 +64,7 @@ in {
type = with types; enum (attrNames servers); type = with types; enum (attrNames servers);
default = defaultServer; default = defaultServer;
}; };
package = mkOption { package = nvim.types.mkGrammarOption pkgs "python";
description = "Python LSP server package";
type = types.package;
default = servers.${cfg.lsp.server}.package;
};
}; };
format = { format = {

View file

@ -17,11 +17,7 @@ in {
type = types.bool; type = types.bool;
default = config.vim.languages.enableTreesitter; default = config.vim.languages.enableTreesitter;
}; };
package = mkOption { package = nvim.types.mkGrammarOption pkgs "rust";
description = "Rust treesitter grammar to use";
type = types.package;
default = pkgs.vimPlugins.nvim-treesitter.builtGrammars.rust;
};
}; };
crates = { crates = {

View file

@ -63,16 +63,8 @@ in {
type = types.bool; type = types.bool;
default = config.vim.languages.enableTreesitter; default = config.vim.languages.enableTreesitter;
}; };
tsPackage = mkOption { tsPackage = nvim.types.mkGrammarOption pkgs "tsx";
description = "Typescript treesitter grammar to use"; jsPackage = nvim.types.mkGrammarOption pkgs "javascript";
type = types.package;
default = pkgs.vimPlugins.nvim-treesitter.builtGrammars.tsx;
};
jsPackage = mkOption {
description = "Javascript treesitter grammar to use";
type = types.package;
default = pkgs.vimPlugins.nvim-treesitter.builtGrammars.javascript;
};
}; };
lsp = { lsp = {

View file

@ -17,11 +17,7 @@ in {
type = types.bool; type = types.bool;
default = config.vim.languages.enableTreesitter; default = config.vim.languages.enableTreesitter;
}; };
package = mkOption { package = nvim.types.mkGrammarOption pkgs "zig";
description = "Zig treesitter grammar to use";
type = types.package;
default = pkgs.vimPlugins.nvim-treesitter.builtGrammars.zig;
};
}; };
lsp = { lsp = {
enable = mkOption { enable = mkOption {