From 6dda9a7e983b78ecfd35b64e4576fda0aaa1b17c Mon Sep 17 00:00:00 2001 From: snow flurry Date: Sat, 6 Aug 2022 19:46:26 -0700 Subject: [PATCH] mkshrc: retab --- base/.mkshrc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/base/.mkshrc b/base/.mkshrc index 7694209..fb2ff25 100644 --- a/base/.mkshrc +++ b/base/.mkshrc @@ -1,7 +1,7 @@ # (mk)shrc if [ -f /etc/shrc ]; then - . /etc/shrc + . /etc/shrc fi export EDITOR=nvim @@ -106,16 +106,16 @@ get_ps1() { } case "$-" in *i*) - # interactive mode settings go here - if /bin/test -z "${HOST}"; then - HOST="$(hostname)" - fi + # interactive mode settings go here + if /bin/test -z "${HOST}"; then + HOST="$(hostname)" + fi PS1='$(get_ps1)' - set -o emacs + set -o emacs - # This file is used by shells that might not support - # set -o tabcomplete, so check before trying to use it. - ( set -o tabcomplete 2>/dev/null ) && set -o tabcomplete + # This file is used by shells that might not support + # set -o tabcomplete, so check before trying to use it. + ( set -o tabcomplete 2>/dev/null ) && set -o tabcomplete if command -v xclip >/dev/null ; then alias ctop='xclip -selection clipboard -out | xclip -selection primary -in' @@ -157,5 +157,5 @@ case "$-" in *i*) echo "obase=$2; ibase=$1; $3" | bc } - ;; + ;; esac