From 56948f0f5a04eedf434f252be745e786cb8933da Mon Sep 17 00:00:00 2001 From: pika Date: Sun, 4 May 2025 19:54:09 +0200 Subject: [PATCH] wip --- init.lua | 2 +- lua/pika/plugins/snacks.lua | 14 ++++++---- .../{telescope.lua => telescope.lua.bak} | 0 lua/pika/plugins/ui.lua | 26 +++++++++---------- 4 files changed, 23 insertions(+), 19 deletions(-) rename lua/pika/plugins/{telescope.lua => telescope.lua.bak} (100%) diff --git a/init.lua b/init.lua index b057c40..ba8bba9 100644 --- a/init.lua +++ b/init.lua @@ -9,5 +9,5 @@ else -- │ themes are under ./lua/pika/plugins/colorschemes.lua │ -- ╰──────────────────────────────────────────────────────╯ - vim.cmd.colorscheme("rose-pine-moon") + vim.cmd.colorscheme("nekonight-moon") end diff --git a/lua/pika/plugins/snacks.lua b/lua/pika/plugins/snacks.lua index e6814f0..e07991a 100644 --- a/lua/pika/plugins/snacks.lua +++ b/lua/pika/plugins/snacks.lua @@ -4,13 +4,17 @@ return { lazy = false, ---@type snacks.Config opts = { - animate = { enabled = false }, - explorer = { enabled = false }, - indent = { enabled = false }, - scroll = { enabled = false }, - bigfile = { 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 dashboard = { row = nil, col = nil, diff --git a/lua/pika/plugins/telescope.lua b/lua/pika/plugins/telescope.lua.bak similarity index 100% rename from lua/pika/plugins/telescope.lua rename to lua/pika/plugins/telescope.lua.bak diff --git a/lua/pika/plugins/ui.lua b/lua/pika/plugins/ui.lua index c03e179..5922076 100644 --- a/lua/pika/plugins/ui.lua +++ b/lua/pika/plugins/ui.lua @@ -312,17 +312,17 @@ return { -- ╭────────────────────────────────────────╮ -- │ which key - to know what to press next │ -- ╰────────────────────────────────────────╯ - { - "folke/which-key.nvim", - event = "VeryLazy", - init = function() - vim.o.timeout = true - vim.o.timeoutlen = 350 - end, - opts = { - -- your configuration comes here - -- or leave it empty to use the default settings - -- refer to the configuration section below - }, - }, + -- { + -- "folke/which-key.nvim", + -- event = "VeryLazy", + -- init = function() + -- vim.o.timeout = true + -- vim.o.timeoutlen = 350 + -- end, + -- opts = { + -- -- your configuration comes here + -- -- or leave it empty to use the default settings + -- -- refer to the configuration section below + -- }, + -- }, }