Formatted

This commit is contained in:
Bryan Ramos 2023-04-15 08:21:14 -04:00
parent 419cc52ade
commit 902175dfa8

View file

@ -1,4 +1,12 @@
# Function to check if the current shell is an SSH session ##
## My Bash Configs
##
# Set EDITOR to nvim
export EDITOR=nvim
# Check if the current shell is an SSH session
is_ssh_session() { is_ssh_session() {
if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
return 0 return 0
@ -26,7 +34,6 @@ if [ -d "$bash_completion_dir" ]; then
done done
fi fi
# Set EDITOR to nvim
export EDITOR=nvim
# Alias List
alias ls='lsd' alias ls='lsd'