From 7fc5ca3056da5c25dbc2a5a2bfbac2dd75c19af7 Mon Sep 17 00:00:00 2001 From: ache Date: Wed, 14 May 2025 18:18:01 +0200 Subject: Set localleader --- lua/ache/config/keymaps.lua | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lua/ache/config/keymaps.lua b/lua/ache/config/keymaps.lua index 1fd1125..32bcce8 100644 --- a/lua/ache/config/keymaps.lua +++ b/lua/ache/config/keymaps.lua @@ -1,4 +1,5 @@ vim.g.mapleader = "!" +vim.g.maplocalleader = "§" -- Only used in Lazy, to open a terminal in the plugin directory with §tt -- vim.keymap.set(mode, lhs, rhs, opts?) -- mode is: @@ -12,12 +13,12 @@ vim.keymap.set("ca", "tn", "tabnew") -- Make some unvisible chars visible. vim.opt.list = true vim.opt.listchars = { - tab = "› ", - -- lead = '·', -- lead is just an invisible normal space - trail = "ꞏ", - extends = "♯", - eol = "¬", - nbsp = "⍽", + tab = "› ", + -- lead = '·', -- lead is just an invisible normal space + trail = "ꞏ", + extends = "♯", + eol = "¬", + nbsp = "⍽", } vim.keymap.set("n", "", ":w", { desc = "quick save file" }) -- cgit v1.3-2-g11bf