From 329cbb57fcac236721bb5a1775517347899f79b4 Mon Sep 17 00:00:00 2001 From: Ching Pei Yang Date: Fri, 4 Sep 2026 17:53:38 +0200 Subject: [PATCH 1/3] ci: exclude deleted files from editorconfig check --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 21fc08fba..355944136 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -160,7 +160,7 @@ jobs: | jq -r '.[] | select(.status != "removed") | .filename' \ > "$HOME/changed_files" else - git diff --name-only HEAD^ > "$HOME/changed_files" + git diff --name-only --diff-filter=d HEAD^ > "$HOME/changed_files" fi - name: Print list of changed files From 8c3cfaa6eae0014feb038c49915e0f90e275545d Mon Sep 17 00:00:00 2001 From: Ching Pei Yang Date: Fri, 4 Sep 2026 17:57:27 +0200 Subject: [PATCH 2/3] docs: unlink deleted options --- docs/manual/release-notes/rl-0.1.md | 5 ++--- docs/manual/release-notes/rl-26.07.md | 7 +++---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/manual/release-notes/rl-0.1.md b/docs/manual/release-notes/rl-0.1.md index 6aa08d98b..7653588b0 100644 --- a/docs/manual/release-notes/rl-0.1.md +++ b/docs/manual/release-notes/rl-0.1.md @@ -44,6 +44,5 @@ vim.luaConfigRC = lib.nvim.dag.entryAnywhere "config here" [MoritzBoehme](https://github.com/MoritzBoehme): -- `catppuccin` theme is now available as a neovim theme - {option}`vim.theme.style` and Lualine theme - {option}`vim.statusline.lualine.theme`. +- `catppuccin` theme is now available as a neovim theme `vim.theme.style` and + Lualine theme `vim.statusline.lualine.theme`. diff --git a/docs/manual/release-notes/rl-26.07.md b/docs/manual/release-notes/rl-26.07.md index 52a20034d..d81553742 100644 --- a/docs/manual/release-notes/rl-26.07.md +++ b/docs/manual/release-notes/rl-26.07.md @@ -179,10 +179,9 @@ [ErinaYip](https://github.com/ErinaYip): - Fixed and updated `lualine` options: - - Enabled the previously unmapped - {option}`vim.statusline.lualine.ignoreFocus`. - - Added {option}`vim.statusline.lualine.disabledFiletypes.statusline` and - {option}`vim.statusline.lualine.disabledFiletypes.winbar`. + - Enabled the previously unmapped `vim.statusline.lualine.ignoreFocus`. + - Added `vim.statusline.lualine.disabledFiletypes.statusline` and + `vim.statusline.lualine.disabledFiletypes.winbar`. [SecBear](https://github.com/SecBear): From 83762e9e85bd21a5c1d5586c941474f70874f978 Mon Sep 17 00:00:00 2001 From: Ching Pei Yang Date: Fri, 4 Sep 2026 18:31:22 +0200 Subject: [PATCH 3/3] config: remove deprecated lualine.theme option --- configuration.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 81e8d7b4f..2a8e2d3a7 100644 --- a/configuration.nix +++ b/configuration.nix @@ -153,7 +153,6 @@ isMaximal: { statusline = { lualine = { enable = true; - theme = "catppuccin"; integrations.breadcrumbs = { vanilla.enable = !isMaximal;