From 6022c73977429400fd9ba4e6357bcea3e230b497 Mon Sep 17 00:00:00 2001 From: Tony Grosinger Date: Fri, 26 Jul 2024 08:35:58 -0700 Subject: [PATCH] Ble: Add config file --- .blerc | 8 ++++++++ install.sh | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 .blerc diff --git a/.blerc b/.blerc new file mode 100644 index 0000000..0eb346c --- /dev/null +++ b/.blerc @@ -0,0 +1,8 @@ +# blerc + +# Cannot use ctrl+enter from inside tmux when using tmux-navigator because +# ctrl+enter and ctrl+j are the same key in the terminal. Bind sending +# multi-line commands to ctrl+m instead. +# https://github.com/microsoft/terminal/issues/6912 +ble-bind -m vi_imap -f C-m accept-line + diff --git a/install.sh b/install.sh index 94aa458..da02505 100755 --- a/install.sh +++ b/install.sh @@ -66,6 +66,9 @@ function performSetup() { mkdir -p ~/.config/atuin ln -fns ${DOTFILES_DIR}/atuin.toml ~/.config/atuin/config.toml + echo "Linking Ble.sh..." + linkFile ".blerc" + echo "Linking tmux..." linkFile ".tmux.conf"