Compare commits

...

4 commits

Author SHA1 Message Date
DamitusThyYeetus123
9426938a2d
Update rl-0.7.md 2024-12-04 09:58:33 +11:00
DamitusThyYeetus123
872d01dcc4
Update astro.nix 2024-12-04 09:51:58 +11:00
DamitusThyYeetus123
94cd554d9d
Update configuration.nix
Co-authored-by: raf <raf@notashelf.dev>
2024-12-04 09:41:05 +11:00
DamitusThyYeetus123
90e19c5f51
Update flake/develop.nix
Co-authored-by: raf <raf@notashelf.dev>
2024-12-04 09:40:59 +11:00
4 changed files with 7 additions and 4 deletions

View file

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

View file

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

View file

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

View file

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