this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

beefing up avante

+23 -3
+2
nvim/lua/config/base.lua
··· 6 6 vim.opt.shiftwidth = 2 7 7 vim.opt.tabstop = 2 8 8 9 + vim.opt.laststatus = 3 10 + 9 11 vim.opt.scrolloff = 0 10 12 vim.opt.smoothscroll = true 11 13
+19 -1
nvim/lua/plugins/ai.lua
··· 1 1 return { 2 - { "github/copilot.vim" }, 2 + -- { "github/copilot.vim" }, 3 3 { 4 4 "yetone/avante.nvim", 5 5 event = "VeryLazy", 6 6 lazy = false, 7 7 version = false, -- Set this to "*" to always pull the latest release version, or set it to false to update to the latest code changes. 8 8 opts = { 9 + behaviour = { 10 + enable_cursor_planning_mode = true, 11 + auto_suggestions = true, 12 + }, 13 + rag_service = { 14 + enabled = true, 15 + host_mount = vim.fn.getcwd(), 16 + }, 17 + provider = "claude", -- Set Copilot as the provider 18 + auto_suggestions_provider = "claude", 19 + claude = { 20 + disabled_tools = { "python" }, 21 + }, 22 + windows = { 23 + ask = { 24 + floating = true, 25 + }, 26 + }, 9 27 mappings = { 10 28 ---@class AvanteConflictMappings 11 29 diff = {
-1
nvim/lua/plugins/colors.lua
··· 3 3 "rose-pine/neovim", 4 4 name = "rose-pine", 5 5 config = function() 6 - vim.api.nvim_set_option_value("background", "light", {}) 7 6 require("rose-pine").setup({}) 8 7 vim.cmd("colorscheme rose-pine-dawn") 9 8 end,
+2 -1
nvim/lua/plugins/ui.lua
··· 16 16 }, 17 17 window = { 18 18 mappings = { 19 - -- ["/"] = "noop", -- Disable filtering, I like to search on my own 19 + ["/"] = "noop", -- Disable filtering, I like to search on my own 20 + ["F"] = "noop", 20 21 ["H"] = "noop", -- Conflicts with prev buffer 21 22 }, 22 23 },