From fe860f701b3fb335bc0fec0c85627778c07d6937 Mon Sep 17 00:00:00 2001 From: Poseidon Date: Mon, 25 Aug 2025 12:00:52 -0500 Subject: [PATCH 1/3] docs: remove duplicate release notes entry --- docs/release-notes/rl-0.8.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md index 041266f0..faecdbc4 100644 --- a/docs/release-notes/rl-0.8.md +++ b/docs/release-notes/rl-0.8.md @@ -506,7 +506,6 @@ - Add [nvim-biscuits] support under `vim.utility.nvim-biscuits`. - Add just support under `vim.languages.just` using [just-lsp]. - Add [roslyn-ls] to the `vim.languages.csharp` module. -- Added json support under `vim.languages.json` using [jsonls] and [jsonfmt]. - Add JSON support under `vim.languages.json` using [jsonls] and [jsonfmt]. - Add advanced HTML support under `vim.languages.html` using [superhtml] and [htmlHINT]. From f6cfc3ab4beadd509548ea768927329f280fce8c Mon Sep 17 00:00:00 2001 From: Jaren Glenn Date: Tue, 26 Aug 2025 19:34:53 -0600 Subject: [PATCH 2/3] lazy: enabled option accepts luaInline instead of str Makes inline Lua enabled options evaluate to Lua instead of string literals. --- docs/release-notes/rl-0.8.md | 4 ++++ modules/wrapper/lazy/lazy.nix | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md index faecdbc4..41aee57e 100644 --- a/docs/release-notes/rl-0.8.md +++ b/docs/release-notes/rl-0.8.md @@ -523,3 +523,7 @@ [diced](https://github.com/diced): - Fixed `typescript` treesitter grammar not being included by default. + +[derethil](https://github.com/derethil): + +- Fix `vim.lazy.plugins..enabled` Lua evaluation. diff --git a/modules/wrapper/lazy/lazy.nix b/modules/wrapper/lazy/lazy.nix index eb1f5cdf..cef54360 100644 --- a/modules/wrapper/lazy/lazy.nix +++ b/modules/wrapper/lazy/lazy.nix @@ -1,7 +1,7 @@ {lib, ...}: let inherit (lib.options) mkOption mkEnableOption; inherit (lib.types) enum listOf submodule nullOr str bool int attrsOf anything either oneOf lines; - inherit (lib.nvim.types) pluginType; + inherit (lib.nvim.types) pluginType luaInline; inherit (lib.nvim.config) mkBool; lznKeysSpec = submodule { @@ -98,7 +98,7 @@ # lz.n options enabled = mkOption { - type = nullOr (either bool str); + type = nullOr (either bool luaInline); default = null; description = "When false, or if the lua function returns false, this plugin will not be included in the spec"; }; From a360dd23154894aac01e646402db13b2a0a33a74 Mon Sep 17 00:00:00 2001 From: sjcobb Date: Thu, 28 Aug 2025 09:36:29 +0100 Subject: [PATCH 3/3] update rl notes --- docs/release-notes/rl-0.8.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md index 41aee57e..78009b5f 100644 --- a/docs/release-notes/rl-0.8.md +++ b/docs/release-notes/rl-0.8.md @@ -111,6 +111,10 @@ - Add [hunk.nvim], Neovim plugin & tool for splitting diffs in Neovim. Available as `vim.git.hunk-nvim` +[sjcobb2022](https://github.com/sjcobb2022): + +- Migrate all current lsp configurations to `vim.lsp.server` and remove internal dependency on `nvim-lspconfig` + [amadaluzia](https://github.com/amadaluzia): [haskell-tools.nvim]: https://github.com/MrcJkb/haskell-tools.nvim