From 89453dc581558f430fbdb4648b1ba9894d4848b1 Mon Sep 17 00:00:00 2001 From: rootiest Date: Mon, 25 Nov 2024 19:12:25 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=20Quickfix(offset=5Fencodings):=20?= =?UTF-8?q?address=20nvim-nightly=20offset=5Fencoding=20deprecations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a temporary hotfix to deal with offset_encoding/position_encoding requirements in the latest nightly builds. Plugins should be updated to address this. BREAKING CHANGE: blink.cmp is not working, fallback to nvim-cmp. noice.nvim using a fork. Likely more to come. Watch for 'offset_encoding' scope tags in later commmits. --- lua/config/options.lua | 2 +- lua/plugins/editor.lua | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lua/config/options.lua b/lua/config/options.lua index 57a91e2..13a7d72 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -110,7 +110,7 @@ vim.g.useavante = true ---@type boolean Options: -- Use Blink instead of nvim-cmp -vim.g.useblinkcmp = true ---@type boolean Options: +vim.g.useblinkcmp = false ---@type boolean Options: -- Use experimental performance fork vim.g.cmp_performance_enabled = false ---@type boolean Options: -- When using cmp_performance_enabled with blink, blink will follow main branch diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index 5f24fc4..12b6a02 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -5,6 +5,11 @@ -- ╰─────────────────────────────────────────────────────────╯ return { + { -- Noice + 'tris203/noice.nvim', + branch = 'mixed_encodings', + dev = true, + }, { -- Aerial import = 'lazyvim.plugins.extras.editor.aerial', },