From 2efb9a423d077df5cd821032f9729350ec5b7d99 Mon Sep 17 00:00:00 2001 From: finn Date: Sun, 26 Apr 2026 12:43:34 -0700 Subject: [PATCH] add inkbones and update for deepseek v4 --- lua/plugins/avante_202605.lua | 5 +++++ lua/plugins/my_ui_tweaks.lua | 11 +++++++++++ 2 files changed, 16 insertions(+) diff --git a/lua/plugins/avante_202605.lua b/lua/plugins/avante_202605.lua index 3fd8610..78bcc08 100644 --- a/lua/plugins/avante_202605.lua +++ b/lua/plugins/avante_202605.lua @@ -23,6 +23,11 @@ return { -- model = "deepseek-chat", ds claims this endpoint is maximally compatible but being deprecated eventually model = "deepseek-v4-flash", disable_tools = false, + extra_request_body = { + ["thinking"] = { + ["type"] = "disabled", + }, + }, }, deepseek_v4 = { __inherited_from = "openai", diff --git a/lua/plugins/my_ui_tweaks.lua b/lua/plugins/my_ui_tweaks.lua index 3c11b74..f74f736 100644 --- a/lua/plugins/my_ui_tweaks.lua +++ b/lua/plugins/my_ui_tweaks.lua @@ -9,12 +9,23 @@ return { }, }, + -- Lush: colorscheme creation aid with real-time feedback + { "rktjmp/lush.nvim" }, + -- Darker bg in tokyonight { "folke/tokyonight.nvim", opts = { style = "night" } }, -- Install gruvbox as option { "ellisonleao/gruvbox.nvim" }, + -- My Zenbones tweak for e-ink screens. Requires lush + { "https://gut.oily.dad/finn/zenbones-theme" }, + + -- Override default colorscheme + { "LazyVim/LazyVim", opts = { + colorscheme = "inkbones", + } }, + -- Flash nvim labels { "folke/flash.nvim",