From 6f387c263349f4343df106cc433e040bb720c99d Mon Sep 17 00:00:00 2001 From: Tibeuleu <> Date: Tue, 4 Jun 2024 23:14:03 +0200 Subject: [PATCH] fix newsboat astro-interesting query, clean lsp-python-ruff --- .config/newsboat/urls | 2 +- .config/nvim/after/plugin/lsp.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/newsboat/urls b/.config/newsboat/urls index 12db71e..ffd70c9 100755 --- a/.config/newsboat/urls +++ b/.config/newsboat/urls @@ -1,4 +1,4 @@ "query:to-read:flags # \"p\"" -"query:astro-interesting:tags # \"astro\" and (content # \"agn\" or content =~ \"polari\") and unread = \"yes\"" Astro +"query:astro-interesting:tags # \"Astro\" and (content # \"agn\" or content =~ \"polari\") and unread = \"yes\"" Astro "query:linux-new:tags # \"Linux\" and unread = \"yes\"" Linux "query:news-new:tags # \"News\" and unread = \"yes\"" News diff --git a/.config/nvim/after/plugin/lsp.lua b/.config/nvim/after/plugin/lsp.lua index 56be4fd..12cd407 100644 --- a/.config/nvim/after/plugin/lsp.lua +++ b/.config/nvim/after/plugin/lsp.lua @@ -38,8 +38,8 @@ local servers = { }, ruff = { enabled = true, -- Enable the plugin - executable = "", -- Custom path to ruff - config = "", -- Custom config for ruff to use + -- executable = "", -- Custom path to ruff + -- config = "", -- Custom config for ruff to use extendSelect = { "I" }, -- Rules that are additionally used by ruff extendIgnore = { "C90" }, -- Rules that are additionally ignored by ruff format = { "I" }, -- Rules that are marked as fixable by ruff that should be fixed when running textDocument/formatting