mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-12-26 20:52:22 +00:00
Compare commits
4 commits
af4e682cda
...
9426938a2d
Author | SHA1 | Date | |
---|---|---|---|
|
9426938a2d | ||
|
872d01dcc4 | ||
|
94cd554d9d | ||
|
90e19c5f51 |
4 changed files with 7 additions and 4 deletions
|
@ -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 = isMaximal;
|
astro.enable = false;
|
||||||
markdown.enable = isMaximal;
|
markdown.enable = isMaximal;
|
||||||
html.enable = isMaximal;
|
html.enable = isMaximal;
|
||||||
css.enable = isMaximal;
|
css.enable = isMaximal;
|
||||||
|
|
|
@ -383,3 +383,7 @@ 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.
|
||||||
|
|
|
@ -18,8 +18,7 @@
|
||||||
# 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;
|
||||||
|
|
|
@ -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.jdt-language-server "-data" "~/.cache/jdtls/workspace"]'';
|
example = ''[lib.getExe pkgs.astro-language-server "--minify" "--stdio"]'';
|
||||||
type = either package (listOf str);
|
type = either package (listOf str);
|
||||||
default = servers.${cfg.lsp.server}.package;
|
default = servers.${cfg.lsp.server}.package;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue