Skip to content

Commit b2fea48

Browse files
committed
fix: Remove leader and local-leader remaps from lazy.nvim setup module
1 parent 883fcd8 commit b2fea48

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

lua/config/lazy.lua

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then
1717
end
1818
vim.opt.rtp:prepend(lazypath)
1919

20-
-- Make sure to setup `mapleader` and `maplocalleader` before
21-
-- loading lazy.nvim so that mappings are correct.
22-
-- This is also a good place to setup other settings (vim.opt)
23-
vim.g.mapleader = " "
24-
vim.g.maplocalleader = "\\"
20+
-- Make sure to setup `mapleader` and `maplocalleader` before loading lazy.nvim
21+
-- so that mappings are correct. As of 2025-09-27, this is taken care at
22+
-- `init.vim`.
2523

2624
-- Setup lazy.nvim
2725
require("lazy").setup({

0 commit comments

Comments
 (0)