Skip to content

Commit 206ded7

Browse files
committed
Restore tabs instead of spaces for indentation.
1 parent 2c4a2df commit 206ded7

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

scripts/helpers/plugin_functions.sh

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@ _CACHED_TPM_PATH="$(_tpm_path)"
1919
# This includes a prioritized search on different locations.
2020
#
2121
_get_user_tmux_conf() {
22-
# Define the different possible locations.
23-
custom_location="$TMUX_PLUGIN_MANAGER_CONFIG_LOCATION"
24-
xdg_location="$XDG_CONFIG_HOME/tmux/tmux.conf"
25-
default_location="$HOME/.tmux.conf"
22+
# Define the different possible locations.
23+
custom_location="$TMUX_PLUGIN_MANAGER_CONFIG_LOCATION"
24+
xdg_location="$XDG_CONFIG_HOME/tmux/tmux.conf"
25+
default_location="$HOME/.tmux.conf"
2626

27-
# Search for the correct configuration file by priority.
28-
if [ -n "$custom_location" ]; then
29-
echo "$custom_location"
27+
# Search for the correct configuration file by priority.
28+
if [ -n "$custom_location" ]; then
29+
echo "$custom_location"
3030

31-
elif [ -f "$xdg_location" ]; then
32-
echo "$xdg_location"
31+
elif [ -f "$xdg_location" ]; then
32+
echo "$xdg_location"
3333

34-
else
35-
echo "$default_location"
36-
fi
34+
else
35+
echo "$default_location"
36+
fi
3737
}
3838

3939
_tmux_conf_contents() {
40-
user_config=$(_get_user_tmux_conf)
40+
user_config=$(_get_user_tmux_conf)
4141
cat /etc/tmux.conf "$user_config" 2>/dev/null
4242
if [ "$1" == "full" ]; then # also output content from sourced files
4343
local file

0 commit comments

Comments
 (0)