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.
# This is needed to make `open` function (see below) cross-platform
if [ ! $(uname -s) = 'Darwin' ]; then
if grep -q Microsoft /proc/version; then
# Ubuntu on Windows using the Linux subsystem
alias open='explorer.exe'
else
alias open='xdg-open'
fi
if grep -q Microsoft /proc/version; then
# Ubuntu on Windows using the Linux subsystem
alias open='explorer.exe'
else
alias open='xdg-open'
fi
fi
# Functions
if [ -f ~/.config/shell/functions ]; then
source ~/.config/shell/functions
source ~/.config/shell/functions
fi
# Extra
if [ -f ~/.config/shell/extra ]; then
source ~/.config/shell/extra
source ~/.config/shell/extra
fi