From 4e31578c1e4b9e989cec824e3e832ac2aa66efcd Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Mon, 17 Mar 2025 15:43:07 +0100 Subject: checkpoint --- lua/config/map.lua | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lua/config/map.lua') diff --git a/lua/config/map.lua b/lua/config/map.lua index 7dcf82a..a39f362 100644 --- a/lua/config/map.lua +++ b/lua/config/map.lua @@ -4,6 +4,7 @@ local map = vim.keymap.set vim.g.mapleader = " " vim.g.maplocalleader = "," + -- open config map("n", " c", function() vim.cmd("cd ~/.config/nvim") @@ -13,6 +14,8 @@ end, { desc = "Open neovim config file" }) map("v", "J", ":m '>+1gv=gv", { desc = "Move selected text up" }) map("v", "K", ":m '<-2gv=gv", { desc = "Move selected text down" }) +map("n", "", "make", { desc = "Make" }) + -- better find next and previous map("n", "n", "nzzzv", { desc = "Keep cursor in middle with search" }) map("n", "N", "Nzzzv", { desc = "Keep cursor in middle with search" }) -- cgit v1.2.3