Compare commits

..

No commits in common. "9426938a2dbb89e20714d6a4e64f19eaf1e6415d" and "af4e682cdadc95072063454db94d2a1f0688cd2e" have entirely different histories.

4 changed files with 4 additions and 7 deletions

View file

@ -48,7 +48,7 @@ isMaximal: {
# Assembly is not common, and the asm LSP is a major hit-or-miss # Assembly is not common, and the asm LSP is a major hit-or-miss
assembly.enable = false; assembly.enable = false;
astro.enable = false; astro.enable = isMaximal;
markdown.enable = isMaximal; markdown.enable = isMaximal;
html.enable = isMaximal; html.enable = isMaximal;
css.enable = isMaximal; css.enable = isMaximal;

View file

@ -383,7 +383,3 @@ The changes are, in no particular order:
[Nowaaru](https://github.com/Nowaaru): [Nowaaru](https://github.com/Nowaaru):
- Add `precognition-nvim`. - Add `precognition-nvim`.
[DamitusThyYeeticus123](https://github.com/DamitusThyYeetus123):
- Add support for [Astro](https://astro.build/) language server.

View file

@ -18,7 +18,8 @@
# testing, but make sure to discard the changes before creating a pull # testing, but make sure to discard the changes before creating a pull
# request. # request.
packages.dev = let packages.dev = let
configuration = {}; configuration = {
};
customNeovim = lib.nvim.neovimConfiguration { customNeovim = lib.nvim.neovimConfiguration {
inherit pkgs; inherit pkgs;

View file

@ -98,7 +98,7 @@ in {
package = mkOption { package = mkOption {
description = "Astro LSP server package, or the command to run as a list of strings"; description = "Astro LSP server package, or the command to run as a list of strings";
example = ''[lib.getExe pkgs.astro-language-server "--minify" "--stdio"]''; example = ''[lib.getExe pkgs.jdt-language-server "-data" "~/.cache/jdtls/workspace"]'';
type = either package (listOf str); type = either package (listOf str);
default = servers.${cfg.lsp.server}.package; default = servers.${cfg.lsp.server}.package;
}; };