Random updates I forgot to commit

This commit is contained in:
Bas Grolleman
2025-11-24 11:50:05 +01:00
parent 9c31c06ba5
commit ea63981752
6 changed files with 15 additions and 20 deletions

View File

@@ -11,7 +11,6 @@
"lazyvim.plugins.extras.editor.mini-move", "lazyvim.plugins.extras.editor.mini-move",
"lazyvim.plugins.extras.editor.neo-tree", "lazyvim.plugins.extras.editor.neo-tree",
"lazyvim.plugins.extras.editor.outline", "lazyvim.plugins.extras.editor.outline",
"lazyvim.plugins.extras.editor.snacks_explorer",
"lazyvim.plugins.extras.editor.telescope", "lazyvim.plugins.extras.editor.telescope",
"lazyvim.plugins.extras.lang.ansible", "lazyvim.plugins.extras.lang.ansible",
"lazyvim.plugins.extras.lang.clojure", "lazyvim.plugins.extras.lang.clojure",
@@ -31,7 +30,7 @@
], ],
"install_version": 8, "install_version": 8,
"news": { "news": {
"NEWS.md": "10960" "NEWS.md": "11866"
}, },
"version": 8 "version": 8
} }

View File

@@ -7,15 +7,12 @@ return {
---@module 'avante' ---@module 'avante'
---@type avante.Config ---@type avante.Config
opts = { opts = {
provider = "gpt-4.1", provider = "gpt-5-codex",
providers = { providers = {
["gpt-4.1"] = { ["gpt-5-codex"] = {
__inherited_from = "openai", __inherited_from = "openai",
model = "gpt-4.1", model = "gpt-5-codex",
}, temperature = 1,
["gpt-4.1-mini"] = {
__inherited_from = "openai",
model = "gpt-4.1-mini",
}, },
}, },
}, },
@@ -23,7 +20,7 @@ return {
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim", "MunifTanjim/nui.nvim",
--- The below dependencies are optional, --- 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 "nvim-telescope/telescope.nvim", -- for file_selector provider telescope
"hrsh7th/nvim-cmp", -- autocompletion for avante commands and mentions "hrsh7th/nvim-cmp", -- autocompletion for avante commands and mentions
"ibhagwan/fzf-lua", -- for file_selector provider fzf "ibhagwan/fzf-lua", -- for file_selector provider fzf

View File

@@ -19,17 +19,17 @@ return {
auto_show = true, auto_show = true,
}, },
}, },
file_selector = {
provider = "telescope",
provider_opts = {},
},
sources = { sources = {
-- Add 'avante' to the list default = { "avante", "lsp", "path", "buffer" },
-- NOTE Disbable adding this until I can properly figure it out
-- default = { "avante", "lsp", "path", "buffer" },
providers = { providers = {
avante = { avante = {
module = "blink-cmp-avante", module = "blink-cmp-avante",
name = "Avante", name = "Avante",
opts = { opts = {},
-- options for blink-cmp-avante
},
}, },
}, },
}, },

View File

@@ -1,3 +0,0 @@
return {
"benlubas/neorg-interim-ls",
}

View File

@@ -1,6 +1,6 @@
return { return {
"MeanderingProgrammer/render-markdown.nvim", "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' ---@module 'render-markdown'
---@type render.md.UserConfig ---@type render.md.UserConfig
opts = {}, opts = {},

2
zshrc
View File

@@ -104,6 +104,7 @@ setopt HIST_VERIFY
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH" 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" export PATH="${HOME}/bin:${HOMEBREW_PREFIX}/opt/openssl/bin:$PATH"
eval "$(direnv hook zsh)" eval "$(direnv hook zsh)"
@@ -144,3 +145,4 @@ EOF
export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock
source ~/.zsh/zsh-vim-mode/zsh-vim-mode.plugin.zsh source ~/.zsh/zsh-vim-mode/zsh-vim-mode.plugin.zsh
alias k=kubectl