mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
55 lines
1.7 KiB
Lua
55 lines
1.7 KiB
Lua
-- Welcome to nvim's systemd :D
|
|
|
|
return {
|
|
"folke/snacks.nvim",
|
|
priority = 1000,
|
|
lazy = false,
|
|
---@type snacks.Config
|
|
opts = {
|
|
bigfile = { enabled = true },
|
|
dashboard = {
|
|
enabled = true,
|
|
preset = {
|
|
keys = {
|
|
-- { key = "p", icon = " ", desc = "查找项目", action = "<cmd>Telescope projects<CR>" },
|
|
{ key = "h", icon = " ", desc = "历史文件", action = "<cmd>FzfLua oldfiles<CR>" },
|
|
{ key = "l", icon = " ", desc = "加载会话", action = "<cmd>SessionSearch<CR>" },
|
|
{
|
|
key = "c",
|
|
icon = " ",
|
|
desc = "转到设置",
|
|
action = "<cmd>FzfLua files cwd=~/.config/nvim<CR>",
|
|
},
|
|
{ key = "q", icon = " ", desc = "退出", action = "<cmd>qa<CR>" },
|
|
},
|
|
},
|
|
sections = {
|
|
{ section = "header" },
|
|
{ icon = " ", title = "Keymaps", section = "keys", indent = 2, padding = 1 },
|
|
{ icon = " ", title = "Recent Files", section = "recent_files", indent = 2, padding = 1 },
|
|
{ icon = " ", title = "Projects", section = "projects", indent = 2, padding = 1 },
|
|
{ section = "startup" },
|
|
},
|
|
},
|
|
-- explorer = {
|
|
-- },
|
|
indent = { enabled = true },
|
|
-- input = { enabled = true },
|
|
notifier = { enabled = true },
|
|
-- quickfile = { enabled = true },
|
|
scope = { enabled = true },
|
|
-- scroll = { enabled = true },
|
|
statuscolumn = { enabled = true },
|
|
-- words = { enabled = true },
|
|
image = { enabled = true },
|
|
},
|
|
keys = {
|
|
-- {
|
|
-- "<leader>ft",
|
|
-- function()
|
|
-- require("snacks").explorer()
|
|
-- end,
|
|
-- desc = "Toggle File Explorer",
|
|
-- },
|
|
},
|
|
}
|