diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-09-06 17:35:41 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-09-06 17:35:41 +0300 |
commit | 53b90173a7052e4c7cf8ff834078837b6a238c0e (patch) | |
tree | c96c2b1170fd9a4130184aa8d3c07c438ec2df55 | |
parent | .bashrc: clean up aliases (diff) | |
download | linux-home-53b90173a7052e4c7cf8ff834078837b6a238c0e.tar.gz linux-home-53b90173a7052e4c7cf8ff834078837b6a238c0e.zip |
.bashrc: remove ranger & Tilix configuration
-rw-r--r-- | %HOME%/.bashrc | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc index 02a8b51..afb5aeb 100644 --- a/%HOME%/.bashrc +++ b/%HOME%/.bashrc @@ -91,21 +91,6 @@ os_is_cygwin \ || command -v stty > /dev/null 2>&1 \ && stty -ixon -# Tilix: fix the important warning. -# https://gnunn1.github.io/tilix-web/manual/vteconfig/ -if [ "$TILIX_ID" ] || [ "$VTE_VERSION" ]; then - [ -r /etc/profile.d/vte.sh ] && source /etc/profile.d/vte.sh -fi - -# ranger: prevent nested instances. -ranger() { - if [ -z "$RANGER_LEVEL" ]; then - /usr/bin/ranger "$@" - else - exit - fi -} - inside_nnn() { [ -n "$NNNLVL" ] && [ "${NNNLVL:-0}" -ge 1 ] } |