From f142075daa97c31ad400d48183bfc84552ebea71 Mon Sep 17 00:00:00 2001
From: Micah Halter <micah@mehalter.com>
Date: Sun, 28 Jan 2024 09:58:38 -0500
Subject: [PATCH] fix(plugins): update mapping casing

---
 lua/plugins/lsp.lua      | 2 +-
 lua/plugins/mappings.lua | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua
index fd4ce55..be0d8ce 100644
--- a/lua/plugins/lsp.lua
+++ b/lua/plugins/lsp.lua
@@ -69,7 +69,7 @@ return {
         --   desc = "Declaration of current symbol",
         --   cond = "textDocument/declaration",
         -- },
-        -- ["<leader>uY"] = {
+        -- ["<Leader>uY"] = {
         --   function() require("astrolsp.toggles").buffer_semantic_tokens() end,
         --   desc = "Toggle LSP semantic highlight (buffer)",
         --   cond = function(client) return client.server_capabilities.semanticTokensProvider and vim.lsp.semantic_tokens end,
diff --git a/lua/plugins/mappings.lua b/lua/plugins/mappings.lua
index 1753536..7dca271 100644
--- a/lua/plugins/mappings.lua
+++ b/lua/plugins/mappings.lua
@@ -22,7 +22,7 @@ return {
         -- },
 
         -- mappings seen under group name "Buffer"
-        ["<leader>bD"] = {
+        ["<Leader>bD"] = {
           function()
             require("astroui.status.heirline").buffer_picker(
               function(bufnr) require("astrocore.buffer").close(bufnr) end
@@ -32,7 +32,7 @@ return {
         },
         -- tables with just a `desc` key will be registered with which-key if it's installed
         -- this is useful for naming menus
-        ["<leader>b"] = { desc = "Buffers" },
+        ["<Leader>b"] = { desc = "Buffers" },
         -- quick save
         -- ["<C-s>"] = { ":w!<cr>", desc = "Save File" },  -- change description but the same command
       },