From 7e3a5db8a32df9dac6a3508c09577fbc2dd3f549 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Wed, 19 Jun 2024 15:18:36 +0200 Subject: fix(modules/nvim/plgs/vim-tex): Disable the new `tsb` mapping This mapping conflicts with my default `t` mapping to go down. --- modules/home/conf/nvim/plgs/vim-tex/default.nix | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'modules') diff --git a/modules/home/conf/nvim/plgs/vim-tex/default.nix b/modules/home/conf/nvim/plgs/vim-tex/default.nix index 70ec7f5b..0b92c429 100644 --- a/modules/home/conf/nvim/plgs/vim-tex/default.nix +++ b/modules/home/conf/nvim/plgs/vim-tex/default.nix @@ -16,8 +16,20 @@ syntax_conceal_disable = 1; mappings_disable = { - n = ["tsf" "tsc" "tse" "ts$" "tsd" "tsD"]; - x = ["tsd" "tsD" "tsf"]; + n = [ + "ts$" + "tsD" + "tsb" + "tsc" + "tsd" + "tse" + "tsf" + ]; + x = [ + "tsD" + "tsd" + "tsf" + ]; }; toc_config = { -- cgit 1.4.1