From 75d2b26b6ef588a9134c9a7f24f14edc7b278ee7 Mon Sep 17 00:00:00 2001
From: Micah Halter <micah@mehalter.com>
Date: Tue, 13 Feb 2024 15:39:40 -0500
Subject: [PATCH] refactor: move `maplocalleader` to AstroNvim `opts`

---
 init.lua | 1 +
 1 file changed, 1 insertion(+)

diff --git a/init.lua b/init.lua
index 87919e2..bfb86e6 100644
--- a/init.lua
+++ b/init.lua
@@ -21,6 +21,7 @@ lazy.setup({
     import = "astronvim.plugins",
     opts = { -- AstroNvim options must be set with the `import` key
       mapleader = " ", -- This ensures the leader key must be configured before Lazy is set up
+      maplocalleader = ",", -- This ensures the localleader key must be configured before Lazy is set up
       icons_enabled = true, -- Set to false to disable icons (if no Nerd Font is available)
       pin_plugins = nil, -- Default will pin plugins when tracking `version` of AstroNvim, set to true/false to override
     },