添加折叠插件

This commit is contained in:
captain 2026-04-12 09:00:17 +08:00
parent 3b19a9c8a8
commit ba406e9e0e
5 changed files with 113 additions and 19 deletions

View file

@ -2,27 +2,48 @@
if vim.g.vscode then return end
local P = {
name = "noice.nvim",
module = "noice",
deps = { "nui.nvim" },
name = "noice.nvim",
module = "noice",
deps = { "nui.nvim" },
}
-- 复刻 "VeryLazy" 策略
vim.api.nvim_create_autocmd("UIEnter", {
callback = function()
-- vim.schedule 的作用是:别卡住界面的渲染,等 UI 画完了、闲下来了,再偷偷加载
vim.schedule(function()
PackUtils.load(P, function(plugin)
plugin.setup({
presets = {
bottom_search = true, -- use a classic bottom cmdline for search
command_palette = true, -- position the cmdline and popupmenu together
long_message_to_split = true, -- long messages will be sent to a split
inc_rename = false, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = false, -- add a border to hover docs and signature help
},
})
end)
end)
end
callback = function()
-- vim.schedule 的作用是:别卡住界面的渲染,等 UI 画完了、闲下来了,再偷偷加载
vim.schedule(function()
PackUtils.load(P, function(plugin)
plugin.setup({
presets = {
bottom_search = true, -- use a classic bottom cmdline for search
command_palette = true, -- position the cmdline and popupmenu together
long_message_to_split = true, -- long messages will be sent to a split
inc_rename = false, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = false, -- add a border to hover docs and signature help
},
-- 需要过滤的信息
routes = {
{
-- 过滤翻译插件的成功提示
filter = {
event = "msg_show",
find = "Translate success",
},
-- opts.skip = true 会告诉 Noice 完全忽略这条消息
opts = { skip = true },
},
{
-- 过滤打开rust文件不影响使用的错误提示
filter = {
event = "msg_show",
kind = "emsg",
find = "Error in decoration provider",
},
opts = { skip = true },
},
},
})
end)
end)
end
})

View file

@ -30,6 +30,10 @@ local function load_plugin()
},
})
end)
-- 提前触发 BufReadPost 的事件钩子,让 LSP 悄悄在后台 require 完毕
vim.schedule(function()
vim.api.nvim_exec_autocmds("BufReadPost", { modeline = false })
end)
end
vim.keymap.set({ "n", "v" }, "<c-t>", function()

48
lua/pack/configs/ufo.lua Normal file
View file

@ -0,0 +1,48 @@
-- === 折叠插件 ===
if vim.g.vscode then return end
-- ufo关于折叠的设置
vim.o.foldcolumn = "0" -- '0' is not bad,其他的会有奇怪的数字
vim.o.foldlevel = 99 -- Using ufo provider need a large value, feel free to decrease the value
vim.o.foldlevelstart = 99
vim.o.foldenable = true
local P = {
name = "nvim-ufo", -- 仓库名
module = "ufo", -- require模块名
deps = { "promise-async" },
}
-- 懒加载触发器
vim.api.nvim_create_autocmd({
"UIEnter", -- vim.schedule(function()
}, {
callback = function()
vim.schedule(function()
PackUtils.load(P, function(plugin)
-- Option 2: nvim lsp as LSP client
local capabilities = vim.lsp.protocol.make_client_capabilities()
capabilities.textDocument.foldingRange = {
dynamicRegistration = false,
lineFoldingOnly = true,
}
local language_servers = vim.lsp.get_clients() -- or list servers manually like {'gopls', 'clangd'}
for _, ls in ipairs(language_servers) do
require("lspconfig")[ls].setup({
capabilities = capabilities,
})
end
plugin.setup({})
-- Option 3: treesitter as a main provider instead
-- plugin.setup({
-- provider_selector = function()
-- return { "treesitter", "indent" }
-- end
-- })
-- 键盘映射,这里的按键会打开或折叠全部的可折叠位置
vim.keymap.set("n", "zr", require("ufo").openAllFolds)
vim.keymap.set("n", "zm", require("ufo").closeAllFolds)
end)
end)
end
})