mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
218d8a6417
Signed-off-by: Magic_RB <magic_rb@redalder.org>
79 lines
1.8 KiB
Bash
79 lines
1.8 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
[[ $DISPLAY ]] && shopt -s checkwinsize
|
|
|
|
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
|
|
|
|
## Enable color on grep
|
|
alias grep='grep --color=auto'
|
|
|
|
## Replace ls and cat with exa and bat respectively
|
|
alias ls='@exa@/bin/exa'
|
|
alias cat='@bat@/bin/bat'
|
|
|
|
export PS1="\u@\[\e[37m\]\h\[\e[m\]:\[\e[32m\]\w\[\e[m\]\[\e[31m\]\\$\[\e[m\] "
|
|
|
|
emacsclient() {
|
|
if [[ -e "$HOME/.ssh/emacs-server" ]] ; then
|
|
|
|
params=()
|
|
sudo=0
|
|
nowait=0
|
|
|
|
host=$(echo $SSH_CONNECTION | cut -d' ' -f3)
|
|
port=$(echo $SSH_CONNECTION | cut -d' ' -f4)
|
|
|
|
for p in "${@}"; do
|
|
if [[ "${p}" == "-s" || "${p}" == "--sudo" ]]; then
|
|
sudo=1
|
|
elif [[ "${p}" == "-n" || "${p}" == "--no-wait" ]]; then
|
|
params+=( "-nowait" )
|
|
else
|
|
if [[ ${sudo} -eq 1 ]]; then
|
|
params+=( "-file /ssh:${USER}@${host}#${port}|sudo::"$(realpath -m "${p}") )
|
|
else
|
|
params+=( "-file /ssh:${USER}@${host}#${port}:"$(realpath "${p}") )
|
|
fi
|
|
fi
|
|
done
|
|
|
|
if [[ ${nowait} -eq 0 ]] ; then
|
|
printf 'Waiting for Emacs...\n'
|
|
fi
|
|
|
|
echo "${params[@]}" | nc -U "$HOME/.ssh/emacs-server" >/dev/null 2>&1
|
|
else
|
|
env emacsclient "${@}"
|
|
fi
|
|
}
|
|
|
|
alias e='emacsclient'
|
|
alias E='emacsclient -s'
|
|
|
|
|
|
## Set prompt
|
|
|
|
export EDITOR="emacsclient"
|
|
export BROWSER="firefox-nightly"
|
|
|
|
## Clear scrollback for vterm
|
|
if [[ "$INSIDE_EMACS" = 'vterm' ]]; then
|
|
function clear(){
|
|
vterm_printf "51;Evterm-clear-scrollback";
|
|
tput clear;
|
|
}
|
|
fi
|
|
|
|
if [[ "$INSIDE_EMACS" = 'vterm' ]] \
|
|
&& [[ -n ${EMACS_VTERM_PATH} ]] \
|
|
&& [[ -f ${EMACS_VTERM_PATH}/etc/emacs-vterm-bash.sh ]]; then
|
|
source ${EMACS_VTERM_PATH}/etc/emacs-vterm-bash.sh
|
|
fi
|
|
|
|
if [[ "@direnvEnabled@" == "true" ]] ; then
|
|
eval "$(direnv hook bash)"
|
|
fi
|