fix: correct indentation in avante.nvim/README_cn.md

This commit is contained in:
XDcedar 2024-12-07 01:31:42 +08:00 committed by GitHub
parent b1164f5ab1
commit 3ce2a45cca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,61 +19,61 @@
转到nvim的配置文件夹下linux 默认是`~/.config/nvim`)的 `lua/plugins` 文件夹,创建一个名为 `avante.lua` 的文件,并在其中添加以下内容: 转到nvim的配置文件夹下linux 默认是`~/.config/nvim`)的 `lua/plugins` 文件夹,创建一个名为 `avante.lua` 的文件,并在其中添加以下内容:
```lua ```lua
return { return {
{ {
"yetone/avante.nvim", "yetone/avante.nvim",
event = "VeryLazy", event = "VeryLazy",
lazy = false, lazy = false,
version = false, -- set this if you want to always pull the latest change version = false, -- set this if you want to always pull the latest change
opts = { opts = {
provider = "openai", provider = "openai",
auto_suggestions_provider = "openai", -- Since auto-suggestions are a high-frequency operation and therefore expensive, it is recommended to specify an inexpensive provider or even a free provider: copilot auto_suggestions_provider = "openai", -- Since auto-suggestions are a high-frequency operation and therefore expensive, it is recommended to specify an inexpensive provider or even a free provider: copilot
openai = { openai = {
endpoint = "https://api.deepseek.com/v1", endpoint = "https://api.deepseek.com/v1",
model = "deepseek-chat", model = "deepseek-chat",
timeout = 30000, -- Timeout in milliseconds timeout = 30000, -- Timeout in milliseconds
temperature = 0, temperature = 0,
max_tokens = 4096, max_tokens = 4096,
["local"] = false, ["local"] = false,
}, },
}, },
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true` -- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
build = "make", build = "make",
-- build = "powershell -ExecutionPolicy Bypass -File Build.ps1 -BuildFromSource false" -- for windows -- build = "powershell -ExecutionPolicy Bypass -File Build.ps1 -BuildFromSource false" -- for windows
dependencies = { dependencies = {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
"stevearc/dressing.nvim", "stevearc/dressing.nvim",
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim", "MunifTanjim/nui.nvim",
--- The below dependencies are optional, --- The below dependencies are optional,
"nvim-tree/nvim-web-devicons", -- or echasnovski/mini.icons "nvim-tree/nvim-web-devicons", -- or echasnovski/mini.icons
"zbirenbaum/copilot.lua", -- for providers='copilot' "zbirenbaum/copilot.lua", -- for providers='copilot'
{ {
-- support for image pasting -- support for image pasting
"HakonHarnes/img-clip.nvim", "HakonHarnes/img-clip.nvim",
event = "VeryLazy", event = "VeryLazy",
opts = { opts = {
-- recommended settings -- recommended settings
default = { default = {
embed_image_as_base64 = false, embed_image_as_base64 = false,
prompt_for_file_name = false, prompt_for_file_name = false,
drag_and_drop = { drag_and_drop = {
insert_mode = true, insert_mode = true,
},
-- required for Windows users
use_absolute_path = true,
}, },
-- required for Windows users
use_absolute_path = true,
}, },
}, },
}, {
{ -- Make sure to set this up properly if you have lazy=true
-- Make sure to set this up properly if you have lazy=true 'MeanderingProgrammer/render-markdown.nvim',
'MeanderingProgrammer/render-markdown.nvim', opts = {
opts = { file_types = { "markdown", "Avante" },
file_types = { "markdown", "Avante" }, },
ft = { "markdown", "Avante" },
}, },
ft = { "markdown", "Avante" },
}, },
}, },
},
} }
``` ```