diff options
author | William Carroll <wpcarro@gmail.com> | 2017-06-13T15·33-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2017-06-13T15·33-0400 |
commit | 8fff1ba8905256ba8d24c0ae47b5da0eb4efc066 (patch) | |
tree | f0828dd229d92d33aba07655f1f2a4fe27c03da7 /configs | |
parent | 6b3d011491bf03033f5e008792d82bc32b1976ea (diff) |
Better integrates CLI and Emacsclient
Diffstat (limited to 'configs')
-rw-r--r-- | configs/.zsh_profile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configs/.zsh_profile b/configs/.zsh_profile index 93721b70f4a5..f533036acf9f 100644 --- a/configs/.zsh_profile +++ b/configs/.zsh_profile @@ -24,11 +24,11 @@ echo "Welcome back, $USER" # display the space available on each mounted Volume df -hl -# use vi bindings for terminal input -# set -o vi + # use emacs bindings (default) for terminal input set -o emacs + # aliases source $HOME/pc_settings/aliases.sh @@ -38,6 +38,9 @@ source $HOME/pc_settings/functions/index.sh # setup keybindings for history functions source $HOME/pc_settings/scripts/setup_keybindings.sh +# setup emacs + shell configuration +source $HOME/pc_settings/emacs/index.sh + # BEGIN: bindkeys bindkey "^R" history-incremental-search-backward |