about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-06-19 15:18:36 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-06-19 15:18:36 +0200
commit7e3a5db8a32df9dac6a3508c09577fbc2dd3f549 (patch)
tree500b2edc1f588ff3f454cd593fc1d94acf181988 /modules
parentfix(modules/nvim): Update to the newest nixVim version (diff)
downloadnixos-config-7e3a5db8a32df9dac6a3508c09577fbc2dd3f549.tar.gz
nixos-config-7e3a5db8a32df9dac6a3508c09577fbc2dd3f549.zip
fix(modules/nvim/plgs/vim-tex): Disable the new `tsb` mapping
This mapping conflicts with my default `t` mapping to go down.
Diffstat (limited to '')
-rw-r--r--modules/home/conf/nvim/plgs/vim-tex/default.nix16
1 files changed, 14 insertions, 2 deletions
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 = {