nvim/lua/plugins/term.lua
2026-03-18 00:46:36 +08:00

26 lines
708 B
Lua

return {
"folke/snacks.nvim",
opts = {
explorer = {
-- 覆盖默认按键映射
actions = {
-- 原 E (expand_all) -> 绑定到 e
["e"] = "expand_all",
-- 原 e (explore) -> 绑定到 E
["E"] = "explore",
},
},
terminal = {
win = {
-- 可选: "float" (浮动), "bottom" (底部), "top" (顶部), "left" (左侧), "right" (右侧)
-- position = "right",
-- 浮动窗口专用配置(当 position = "float" 时生效)
-- border = "rounded", -- 边框样式: "single", "double", "rounded", "shadow"
-- width = 0.3,
-- height = 0.8, -- 高度占屏幕比例
},
},
},
}