From 0448ef648fd13e5abe691a4ec68e694a0d455e48 Mon Sep 17 00:00:00 2001 From: Henrik Bakken Date: Tue, 13 May 2025 00:58:35 +0200 Subject: [PATCH] nvim minor --- nvim/init.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nvim/init.lua b/nvim/init.lua index 0abf09d..519377e 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -338,6 +338,7 @@ end, {}) local function makespecs_themes() return { + { "aktersnurra/no-clown-fiesta.nvim", opts = { transparent = false } }, "NLKNguyen/papercolor-theme", "junegunn/seoul256.vim", "mcauley-penney/phobos-anomaly.nvim", @@ -1073,7 +1074,7 @@ local function makespec_snacks() { "sa", function() Snacks.picker.grep({ untracked = true }) end, desc = "Grep Files" }, { "*", function() Snacks.picker.grep_word() end, desc = "Visual selection or word", mode = { "n", "x" }, }, { "/", function() Snacks.picker.search_history() end, desc = "Search History" }, - { ";", function() Snacks.picker.command_history() end, desc = "Command History" }, + { ":", function() Snacks.picker.command_history() end, desc = "Command History" }, { "sB", function() Snacks.picker.grep_buffers() end, desc = "Grep Buffers" }, { "sb", function() Snacks.picker.lines() end, desc = "Grep Buffer" }, { "sc", function() Snacks.picker.grep({ cwd = "/home/hjalmarlucius/dotfiles", title="Grep Configs" }) end, desc = "Grep Configs" }, @@ -1267,7 +1268,7 @@ end local function makespec_mason() return { - "williamboman/mason.nvim", + "mason-org/mason.nvim", lazy = false, opts = {}, keys = { { "", "Mason", desc = "Mason" } },