From 413023e90312c6f232e996dce6aa7161114ae0a1 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Mon, 31 Mar 2025 16:50:20 +0200 Subject: [PATCH] [Keybinds] Remove Ctrl + Bckspc --- nvim/lua/keybinds.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nvim/lua/keybinds.lua b/nvim/lua/keybinds.lua index 471fd05..48cfe7c 100755 --- a/nvim/lua/keybinds.lua +++ b/nvim/lua/keybinds.lua @@ -92,9 +92,6 @@ keymap.set("n", "m", ":!chmod +x %:p", opts("make current file execu keymap.set("n", "#", ":set syntax=sh:w:!chmod +x %:p:LspStart bashlsi#!/bin/sh", opts("setup sh script")) keymap.set("n", "#", ":set syntax=python:w:!chmod +x %:p:LspStart pyrighti#!/usr/bin/env python3", opts("setup python script")) --- CTRL + Backspace -keymap.set("i", "", "", opts()) - -- select all keymap.set("n", "a", "ggVG", opts("select all")) @@ -130,3 +127,4 @@ keymap.set({ "n", "v" }, "d", '"+d', opts("yank to system clipbo keymap.set({ "n", "v" }, "D", '"+D', opts("YANK to system clipboard and DELETE")) keymap.set("n", "wk", ":WhichKey", opts("Toggle WhichKey")) +