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")) +