This commit is contained in:
pika 2025-05-04 19:54:09 +02:00
parent 56397936f2
commit 56948f0f5a
4 changed files with 23 additions and 19 deletions

View file

@ -9,5 +9,5 @@ else
-- │ themes are under ./lua/pika/plugins/colorschemes.lua │ -- │ themes are under ./lua/pika/plugins/colorschemes.lua │
-- ╰──────────────────────────────────────────────────────╯ -- ╰──────────────────────────────────────────────────────╯
vim.cmd.colorscheme("rose-pine-moon") vim.cmd.colorscheme("nekonight-moon")
end end

View file

@ -4,13 +4,17 @@ return {
lazy = false, lazy = false,
---@type snacks.Config ---@type snacks.Config
opts = { opts = {
animate = { enabled = false },
explorer = { enabled = false },
indent = { enabled = false },
scroll = { enabled = false },
bigfile = { enabled = true }, bigfile = { enabled = true },
quickfile = { enabled = true }, quickfile = { enabled = true },
notifier = { enabled = true },
indent = { enabled = true },
input = { enabled = true },
---@class snacks.dashboard.Config
---@field enabled? boolean
---@field sections snacks.dashboard.Section
---@field formats table<string, snacks.dashboard.Text|fun(item:snacks.dashboard.Item, ctx:snacks.dashboard.Format.ctx):snacks.dashboard.Text>
dashboard = { dashboard = {
row = nil, row = nil,
col = nil, col = nil,

View file

@ -312,17 +312,17 @@ return {
-- ╭────────────────────────────────────────╮ -- ╭────────────────────────────────────────╮
-- │ which key - to know what to press next │ -- │ which key - to know what to press next │
-- ╰────────────────────────────────────────╯ -- ╰────────────────────────────────────────╯
{ -- {
"folke/which-key.nvim", -- "folke/which-key.nvim",
event = "VeryLazy", -- event = "VeryLazy",
init = function() -- init = function()
vim.o.timeout = true -- vim.o.timeout = true
vim.o.timeoutlen = 350 -- vim.o.timeoutlen = 350
end, -- end,
opts = { -- opts = {
-- your configuration comes here -- -- your configuration comes here
-- or leave it empty to use the default settings -- -- or leave it empty to use the default settings
-- refer to the configuration section below -- -- refer to the configuration section below
}, -- },
}, -- },
} }