diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-09-06 18:46:48 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-09-06 18:46:48 +0300 |
commit | 2bab77d87257d885fca2e2e379d06caf1c8cb028 (patch) | |
tree | 32153560cef6b25a6ff3a3b8fe19d68e678255d0 | |
parent | .profile: remove obsolete comment (diff) | |
download | linux-home-2bab77d87257d885fca2e2e379d06caf1c8cb028.tar.gz linux-home-2bab77d87257d885fca2e2e379d06caf1c8cb028.zip |
.bashrc: reorder stuff
-rw-r--r-- | %HOME%/.bashrc | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc index 016232c..7ea9817 100644 --- a/%HOME%/.bashrc +++ b/%HOME%/.bashrc @@ -94,6 +94,14 @@ os_is_cygwin \ || command -v stty > /dev/null 2>&1 \ && stty -ixon +# Vagrant: fix `vagrant plugin install`. +# https://github.com/hashicorp/vagrant/issues/12202 +# TODO: remove when 2.2.15 is released? +export VAGRANT_DISABLE_STRICT_DEPENDENCY_ENFORCEMENT=1 + +# nnn +# --- + inside_nnn() { [ -n "$NNNLVL" ] && [ "${NNNLVL:-0}" -ge 1 ] } @@ -119,6 +127,9 @@ nnn() { n "$@" } +# tmux +# ---- + remote_terminal() { test -n "$SSH_CONNECTION" } @@ -150,11 +161,6 @@ elif command -v tmux &> /dev/null; then exec tmux fi -# Vagrant: fix `vagrant plugin install`. -# https://github.com/hashicorp/vagrant/issues/12202 -# TODO: remove when 2.2.15 is released? -export VAGRANT_DISABLE_STRICT_DEPENDENCY_ENFORCEMENT=1 - # Disable Alt+N shortcuts, which I use in tmux: # https://superuser.com/a/770902 for i in "-" {0..9}; do bind -r "\e$i"; done |