M home/dotfiles/.bashrc => home/dotfiles/.bashrc +4 -0
@@ 19,6 19,10 @@ fi
# Source the system-wide file.
[ -f /etc/bashrc ] && source /etc/bashrc
+# Emacs eat integration
+[ -n "$EAT_SHELL_INTEGRATION_DIR" ] && \
+ source "$EAT_SHELL_INTEGRATION_DIR/bash"
+
alias ls='ls -p --color=auto'
alias ll='ls -l'
alias grep='grep --color=auto'
M home/dotfiles/.zshrc => home/dotfiles/.zshrc +4 -0
@@ 40,5 40,9 @@ source $ZDOTDIR/plugins/liquidprompt/liquidprompt.plugin.zsh
source $ZDOTDIR/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source $ZDOTDIR/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
+# Eat integration
+[ -n "$EAT_SHELL_INTEGRATION_DIR" ] && \
+ source "$EAT_SHELL_INTEGRATION_DIR/zsh"
+
# LiquidPrompt config
export LP_PS1_POSTFIX=$'\n> '