From 008face2421d3cc5c2251ef7f2e2f3e22b7c1170 Mon Sep 17 00:00:00 2001 From: Mo8it Date: Wed, 22 Jun 2022 13:26:19 +0200 Subject: [PATCH] Add indent and bd keybindings --- .config/nvim/lua/keybindings.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.config/nvim/lua/keybindings.lua b/.config/nvim/lua/keybindings.lua index 02bdfdb..7c1263f 100644 --- a/.config/nvim/lua/keybindings.lua +++ b/.config/nvim/lua/keybindings.lua @@ -29,6 +29,11 @@ set("n", "l", cmd("noh"), opts) set("n", "", "w", opts) +set("v", ">", ">gv", opts) +set("v", "<", "", cmd("bd"), opts) + -- Telescope local telescope_custom = require("plugins.telescope") local telescope_builtin = require("telescope.builtin")