From e125a6197b8091b92bd8b9e1ccf6aafa42275dd5 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Fri, 25 Apr 2025 08:28:03 +0200 Subject: [PATCH] feat: remove unused jj/kk escape mapping --- neovim/default.nix | 3 --- neovim/keymaps.lua | 3 --- 2 files changed, 6 deletions(-) diff --git a/neovim/default.nix b/neovim/default.nix index e73ac3c..4507a44 100644 --- a/neovim/default.nix +++ b/neovim/default.nix @@ -27,9 +27,6 @@ # session handling auto-session - # escape handling - better-escape-nvim - nvim-treesitter.withAllGrammars nvim-treesitter-textobjects nvim-ts-context-commentstring diff --git a/neovim/keymaps.lua b/neovim/keymaps.lua index fecfaca..dd52a7a 100644 --- a/neovim/keymaps.lua +++ b/neovim/keymaps.lua @@ -64,9 +64,6 @@ nnoremap("gq", ":Bdelete") -- toggle search highlighting vim.cmd('nnoremap * v:hlsearch ? ":nohlsearch" : "*"') --- insert-map jj/jk to escape -require("better_escape").setup() - -- open Copilot Chat window nnoremap("cc", ":lua require('CopilotChat').open()") nnoremap("C", ":CodeCompanionChat #buffer")