From faed6a85b392b9cfb71a062a480f0f528e015f90 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= <henrik.tjader@nordicsemi.no>
Date: Wed, 27 Jul 2022 15:15:33 +0200
Subject: [PATCH] Unmap linefeed, make TMUX pane down Ctrl-J work

---
 .vimrc | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.vimrc b/.vimrc
index 021caa3..c2e04c1 100644
--- a/.vimrc
+++ b/.vimrc
@@ -346,6 +346,10 @@ set background=light
 exec "set <F24>=\<Esc>[O"
 exec "set <F25>=\<Esc>[I"
 
+" TMUX workaround, unmap Line Feed
+" https://unix.stackexchange.com/questions/329641/can-i-remap-ctrl-j-and-ctrl-k-in-vim
+let g:C_Ctrl_j = 'off'
+
 " You might have to force true color when using regular vim inside tmux as the
 " colorscheme can appear to be grayscale with "termguicolors" option enabled.
 if !has('gui_running') && &term =~ '^\%(screen\|tmux\)'
-- 
GitLab