summaryrefslogtreecommitdiff
path: root/lua/user/map.lua
diff options
context:
space:
mode:
authorRaymaekers Luca <raymaekers.luca@gmail.com>2024-05-26 13:12:09 +0200
committerRaymaekers Luca <raymaekers.luca@gmail.com>2024-05-26 13:12:09 +0200
commit1d58568902d269ad74a7047a9227ec857c6e7937 (patch)
tree596a2f59c2ad9297a8e5921f7290a85b91716039 /lua/user/map.lua
parent2e2643ce277f901a365a9fc574864ca4d1af9ddf (diff)
remove colorscheme
add keybind for viewing buffers with telescope
Diffstat (limited to 'lua/user/map.lua')
-rw-r--r--lua/user/map.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/user/map.lua b/lua/user/map.lua
index 7bcee2f..ebcd2ca 100644
--- a/lua/user/map.lua
+++ b/lua/user/map.lua
@@ -2,7 +2,7 @@ local map = vim.keymap.set
-- Leader
vim.g.mapleader = " "
-vim.g.maplocalleader = ";"
+vim.g.maplocalleader = ","
-- Move text easilly
map("v", "J", ":m '>+1<CR>gv=gv", { desc = "Move selected text up" })