Convert tabs to spaces

This commit is contained in:
ItsDrike 2021-12-18 12:04:28 +01:00
parent 752fd36c62
commit 09ce7d00a9
No known key found for this signature in database
GPG key ID: FB8CA11A2CF3A843

View file

@ -285,20 +285,20 @@ fi
# Normalize `open` across Linux, macOS, and Windows. # Normalize `open` across Linux, macOS, and Windows.
# This is needed to make `open` function (see below) cross-platform # This is needed to make `open` function (see below) cross-platform
if [ ! $(uname -s) = 'Darwin' ]; then if [ ! $(uname -s) = 'Darwin' ]; then
if grep -q Microsoft /proc/version; then if grep -q Microsoft /proc/version; then
# Ubuntu on Windows using the Linux subsystem # Ubuntu on Windows using the Linux subsystem
alias open='explorer.exe' alias open='explorer.exe'
else else
alias open='xdg-open' alias open='xdg-open'
fi fi
fi fi
# Functions # Functions
if [ -f ~/.config/shell/functions ]; then if [ -f ~/.config/shell/functions ]; then
source ~/.config/shell/functions source ~/.config/shell/functions
fi fi
# Extra # Extra
if [ -f ~/.config/shell/extra ]; then if [ -f ~/.config/shell/extra ]; then
source ~/.config/shell/extra source ~/.config/shell/extra
fi fi