mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Convert tabs to spaces
This commit is contained in:
parent
752fd36c62
commit
09ce7d00a9
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue