- commit
- e1009cf
- parent
- ffc12a9
- author
- Eric Bower
- date
- 2026-01-08 13:56:06 -0500 EST
refactor(nvim): use space for leader kakoune and helix both default to these so I want to transition neovim to it since it appears to be the standard
1 files changed,
+2,
-2
+2,
-2
1@@ -35,8 +35,8 @@ o.swapfile = false
2 o.foldmethod = "indent"
3 o.foldlevelstart = 99
4 local g = vim.g
5-g.mapleader = ","
6-g.maplocalleader = ","
7+g.mapleader = " "
8+g.maplocalleader = " "
9
10 local opts = { silent = true }
11 local map = vim.keymap.set