From 7ee2c01772f566dc8fadeb9b7b9298b78ed41efc Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Fri, 25 Oct 2019 10:27:20 -0400 Subject: [PATCH 1/3] Changed magic enter slightly --- zsh/zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh/zshrc b/zsh/zshrc index dd4ab2a..d8f6831 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -36,6 +36,8 @@ export COMPLETION_WAITING_DOTS="true" export VISUAL='nvim' export EDITOR='nvim' export PATH=$HOME/bin:$PATH +export MAGIC_ENTER_OTHER_COMMAND='exa -l --git' + source <(antibody init) From 4c6203e9de0576c393d0027e70d65c58c4105220 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Tue, 29 Oct 2019 15:54:27 -0400 Subject: [PATCH 2/3] Fix autopushd --- zsh/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/zshrc b/zsh/zshrc index d8f6831..d5443a6 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -3,7 +3,7 @@ HISTFILE=~/.histfile HISTSIZE=10000 SAVEHIST=10000 -setopt extendedglob nomatch notify histignorespace histignorealldups histnofunctions histnostore histverify incappendhistory +setopt extendedglob nomatch notify histignorespace histignorealldups histnofunctions histnostore histverify incappendhistory autopushd pushdignoredups unsetopt autocd beep bindkey -v export RPROMPT=' ' # Fixes a side-effect of the vi-mode oh-my-zsh plugin From a9f1bab4833971a1ed62a307d46c7990066c7df3 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Thu, 7 Nov 2019 11:09:14 -0500 Subject: [PATCH 3/3] send-to-pane behave correctly --- zsh/zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/zshrc b/zsh/zshrc index d5443a6..2214ce5 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -13,7 +13,7 @@ export KEYTIMEOUT=1 fpath=(~/bin ~/.zshcompletions $fpath) zstyle :compinstall filename '/home/anthonys/.zshrc' -zstyle ":completion:*" complete _complete _ignored _approximate +zstyle ":completion:*" complete _complete _ignored _approximate _expand zstyle ":completion:*" glob 1 zstyle ":completion:*" insert-unambiguous true zstyle ':completion:*' menu select @@ -63,7 +63,7 @@ function dt() { } function send-to-pane() { - tmux pipe-pane -I -t $1 "$2" + tmux pipe-pane -I -t $1 "$2 | head -n 1" } function _send_to_pane {