From ea6398175223e976026355a5998dd370b1a61e9c Mon Sep 17 00:00:00 2001 From: Bas Grolleman Date: Mon, 24 Nov 2025 11:50:05 +0100 Subject: [PATCH] Random updates I forgot to commit --- nvim/lazyvim.json | 3 +-- nvim/lua/plugins/avante.lua | 13 +++++-------- nvim/lua/plugins/blink.lua | 12 ++++++------ nvim/lua/plugins/interim-ls.lua | 3 --- nvim/lua/plugins/render-markdown.lua | 2 +- zshrc | 2 ++ 6 files changed, 15 insertions(+), 20 deletions(-) delete mode 100644 nvim/lua/plugins/interim-ls.lua diff --git a/nvim/lazyvim.json b/nvim/lazyvim.json index 466e64d..5b41bf2 100644 --- a/nvim/lazyvim.json +++ b/nvim/lazyvim.json @@ -11,7 +11,6 @@ "lazyvim.plugins.extras.editor.mini-move", "lazyvim.plugins.extras.editor.neo-tree", "lazyvim.plugins.extras.editor.outline", - "lazyvim.plugins.extras.editor.snacks_explorer", "lazyvim.plugins.extras.editor.telescope", "lazyvim.plugins.extras.lang.ansible", "lazyvim.plugins.extras.lang.clojure", @@ -31,7 +30,7 @@ ], "install_version": 8, "news": { - "NEWS.md": "10960" + "NEWS.md": "11866" }, "version": 8 } diff --git a/nvim/lua/plugins/avante.lua b/nvim/lua/plugins/avante.lua index 772efc0..1bafa6d 100644 --- a/nvim/lua/plugins/avante.lua +++ b/nvim/lua/plugins/avante.lua @@ -7,15 +7,12 @@ return { ---@module 'avante' ---@type avante.Config opts = { - provider = "gpt-4.1", + provider = "gpt-5-codex", providers = { - ["gpt-4.1"] = { + ["gpt-5-codex"] = { __inherited_from = "openai", - model = "gpt-4.1", - }, - ["gpt-4.1-mini"] = { - __inherited_from = "openai", - model = "gpt-4.1-mini", + model = "gpt-5-codex", + temperature = 1, }, }, }, @@ -23,7 +20,7 @@ return { "nvim-lua/plenary.nvim", "MunifTanjim/nui.nvim", --- The below dependencies are optional, - "echasnovski/mini.pick", -- for file_selector provider mini.pick + "nvim-mini/mini.pick", -- for file_selector provider mini.pick "nvim-telescope/telescope.nvim", -- for file_selector provider telescope "hrsh7th/nvim-cmp", -- autocompletion for avante commands and mentions "ibhagwan/fzf-lua", -- for file_selector provider fzf diff --git a/nvim/lua/plugins/blink.lua b/nvim/lua/plugins/blink.lua index ca88d12..141ff28 100644 --- a/nvim/lua/plugins/blink.lua +++ b/nvim/lua/plugins/blink.lua @@ -19,17 +19,17 @@ return { auto_show = true, }, }, + file_selector = { + provider = "telescope", + provider_opts = {}, + }, sources = { - -- Add 'avante' to the list - -- NOTE Disbable adding this until I can properly figure it out - -- default = { "avante", "lsp", "path", "buffer" }, + default = { "avante", "lsp", "path", "buffer" }, providers = { avante = { module = "blink-cmp-avante", name = "Avante", - opts = { - -- options for blink-cmp-avante - }, + opts = {}, }, }, }, diff --git a/nvim/lua/plugins/interim-ls.lua b/nvim/lua/plugins/interim-ls.lua deleted file mode 100644 index f3520ad..0000000 --- a/nvim/lua/plugins/interim-ls.lua +++ /dev/null @@ -1,3 +0,0 @@ -return { - "benlubas/neorg-interim-ls", -} diff --git a/nvim/lua/plugins/render-markdown.lua b/nvim/lua/plugins/render-markdown.lua index dc80a29..cfb6da9 100644 --- a/nvim/lua/plugins/render-markdown.lua +++ b/nvim/lua/plugins/render-markdown.lua @@ -1,6 +1,6 @@ return { "MeanderingProgrammer/render-markdown.nvim", - dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite + dependencies = { "nvim-treesitter/nvim-treesitter", "nvim-mini/mini.nvim" }, -- if you use the mini.nvim suite ---@module 'render-markdown' ---@type render.md.UserConfig opts = {}, diff --git a/zshrc b/zshrc index 86a5b7e..ea0359c 100644 --- a/zshrc +++ b/zshrc @@ -104,6 +104,7 @@ setopt HIST_VERIFY export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH" +export PATH="${HOME}/Library/Python/3.9/bin:${PATH}" export PATH="${HOME}/bin:${HOMEBREW_PREFIX}/opt/openssl/bin:$PATH" eval "$(direnv hook zsh)" @@ -144,3 +145,4 @@ EOF export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock source ~/.zsh/zsh-vim-mode/zsh-vim-mode.plugin.zsh +alias k=kubectl