|
57 | 57 | (lsp-defcustom lsp-nix-nixd-formatting-command nil
|
58 | 58 | "External formatter command with arguments.
|
59 | 59 |
|
60 |
| - Example: [ \"nixpkgs-fmt\" ]" |
| 60 | + Example: `[\"nixpkgs-fmt\"]`" |
61 | 61 | :type 'lsp-string-vector
|
62 | 62 | :group 'lsp-nix-nixd
|
63 | 63 | :lsp-path "nixd.formatting.command"
|
|
70 | 70 | Resource Usage: Entries are lazily evaluated, entire nixpkgs takes 200~300MB
|
71 | 71 | for just \"names\". Package documentation, versions, are evaluated by-need.
|
72 | 72 |
|
73 |
| - Example: \"import <nixpkgs> { }\"" |
| 73 | + Example: `\"import <nixpkgs> { }\"`" |
74 | 74 | :type 'string
|
75 | 75 | :group 'lsp-nix-nixd
|
76 | 76 | :lsp-path "nixd.nixpkgs.expr"
|
77 | 77 | :package-version '(lsp-mode . "9.0.1"))
|
78 | 78 |
|
79 | 79 | (lsp-defcustom lsp-nix-nixd-nixos-options-expr nil
|
80 | 80 | "Option set for NixOS option completion. If this is omitted, the default
|
81 |
| - search path (<nixpkgs>) will be used. |
| 81 | + search path (`<nixpkgs>`) will be used. |
82 | 82 |
|
83 | 83 | Example:
|
84 |
| - \"(builtins.getFlake \"/home/lyc/flakes\").nixosConfigurations.adrastea.options\"" |
| 84 | + `\"(builtins.getFlake \"/home/lyc/flakes\").nixosConfigurations.adrastea.options\"`" |
85 | 85 | :type 'string
|
86 |
| - :group 'lsp-nix-nil |
| 86 | + :group 'lsp-nix-nixd |
87 | 87 | :lsp-path "nixd.options.nixos.expr"
|
88 | 88 | :package-version '(lsp-mode . "9.0.1"))
|
89 | 89 |
|
90 | 90 | (lsp-defcustom lsp-nix-nixd-home-manager-options-expr nil
|
91 | 91 | "Option set for home-manager option completion.
|
92 | 92 |
|
93 | 93 | Example:
|
94 |
| - \"(builtins.getFlake \"/home/lyc/flakes\").nixosConfigurations.adrastea.options\"" |
| 94 | + `\"(builtins.getFlake \"/home/lyc/flakes\").nixosConfigurations.adrastea.options\"`" |
95 | 95 | :type 'string
|
96 |
| - :group 'lsp-nix-nil |
| 96 | + :group 'lsp-nix-nixd |
97 | 97 | :lsp-path "nixd.options.home-manager.expr"
|
98 | 98 | :package-version '(lsp-mode . "9.0.1"))
|
99 | 99 |
|
|
0 commit comments