Buncha stuff
This commit is contained in:
parent
20b931993e
commit
73528b3d62
5 changed files with 91 additions and 6 deletions
8
bin/safe-reattach-to-user-namespace
Executable file
8
bin/safe-reattach-to-user-namespace
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
|
# If reattach-to-user-namespace is not available, just run the command.
|
||||||
|
if [ -n "$(command -v reattach-to-user-namespace)" ]; then
|
||||||
|
reattach-to-user-namespace $@
|
||||||
|
else
|
||||||
|
exec "$@"
|
||||||
|
fi
|
|
@ -42,3 +42,8 @@
|
||||||
dest: ~/.zsh.d
|
dest: ~/.zsh.d
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
|
- name: copy contents of bin
|
||||||
|
synchronize:
|
||||||
|
src: ~/.dotfiles/bin/
|
||||||
|
dest: ~/bin
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,10 @@ bind Escape copy-mode
|
||||||
unbind p
|
unbind p
|
||||||
bind p paste-buffer
|
bind p paste-buffer
|
||||||
bind -Tcopy-mode-vi 'v' send -X begin-selection
|
bind -Tcopy-mode-vi 'v' send -X begin-selection
|
||||||
bind -Tcopy-mode-vi 'y' send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
|
|
||||||
|
# Mac OS X fix for pbcopy, pbpaste, and launchctl
|
||||||
|
# set-option -g default-command "safe-reattach-to-user-namespace -l $SHELL"
|
||||||
|
bind -Tcopy-mode-vi 'y' send -X copy-pipe-and-cancel "safe-reattach-to-user-namespace pbcopy"
|
||||||
|
|
||||||
# split-windows
|
# split-windows
|
||||||
bind | split-window -h -c "#{pane_current_path}"
|
bind | split-window -h -c "#{pane_current_path}"
|
||||||
|
|
|
@ -1,10 +1,77 @@
|
||||||
# This entire thing almost entirely, shamelessly stolen from fzf/shell/key-bindings.zsh, replacing fzf with skim
|
# export SKIM_DEFAULT_COMMAND="rg --files"
|
||||||
export SKIM_DEFAULT_COMMAND="rg --files"
|
# Key bindings
|
||||||
|
# ------------
|
||||||
|
# copied and modified from https://github.com/junegunn/fzf/blob/master/shell/key-bindings.zsh
|
||||||
|
#
|
||||||
|
if [[ $- == *i* ]]; then
|
||||||
|
|
||||||
|
# CTRL-T - Paste the selected file path(s) into the command line
|
||||||
|
__fsel() {
|
||||||
|
local cmd="${SKIM_CTRL_T_COMMAND:-"command find -L . -mindepth 1 \\( -path '*/\\.*' -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune \
|
||||||
|
-o -type f -print \
|
||||||
|
-o -type d -print \
|
||||||
|
-o -type l -print 2> /dev/null | cut -b3-"}"
|
||||||
|
setopt localoptions pipefail 2> /dev/null
|
||||||
|
eval "$cmd" | SKIM_DEFAULT_OPTIONS="--height ${SKIM_TMUX_HEIGHT:-40%} --reverse $SKIM_DEFAULT_OPTIONS $SKIM_CTRL_T_OPTS" $(__skimcmd) -m "$@" | while read item; do
|
||||||
|
echo -n "${(q)item} "
|
||||||
|
done
|
||||||
|
local ret=$?
|
||||||
|
echo
|
||||||
|
return $ret
|
||||||
|
}
|
||||||
|
|
||||||
|
__skim_use_tmux__() {
|
||||||
|
[ -n "$TMUX_PANE" ] && [ "${SKIM_TMUX:-0}" != 0 ] && [ ${LINES:-40} -gt 15 ]
|
||||||
|
}
|
||||||
|
|
||||||
|
__skimcmd() {
|
||||||
|
__skim_use_tmux__ &&
|
||||||
|
echo "sk-tmux -d${SKIM_TMUX_HEIGHT:-40%}" || echo "sk"
|
||||||
|
}
|
||||||
|
|
||||||
|
skim-file-widget() {
|
||||||
|
LBUFFER="${LBUFFER}$(__fsel)"
|
||||||
|
local ret=$?
|
||||||
|
zle reset-prompt
|
||||||
|
return $ret
|
||||||
|
}
|
||||||
|
zle -N skim-file-widget
|
||||||
|
bindkey '^P' skim-file-widget
|
||||||
|
|
||||||
|
# Ensure precmds are run after cd
|
||||||
|
skim-redraw-prompt() {
|
||||||
|
local precmd
|
||||||
|
for precmd in $precmd_functions; do
|
||||||
|
$precmd
|
||||||
|
done
|
||||||
|
zle reset-prompt
|
||||||
|
}
|
||||||
|
zle -N skim-redraw-prompt
|
||||||
|
|
||||||
|
# ALT-C - cd into the selected directory
|
||||||
|
skim-cd-widget() {
|
||||||
|
local cmd="${SKIM_ALT_C_COMMAND:-"command find -L . -mindepth 1 \\( -path '*/\\.*' -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune \
|
||||||
|
-o -type d -print 2> /dev/null | cut -b3-"}"
|
||||||
|
setopt localoptions pipefail 2> /dev/null
|
||||||
|
local dir="$(eval "$cmd" | SKIM_DEFAULT_OPTIONS="--height ${SKIM_TMUX_HEIGHT:-40%} --reverse $SKIM_DEFAULT_OPTIONS $SKIM_ALT_C_OPTS" $(__skimcmd) -m)"
|
||||||
|
if [[ -z "$dir" ]]; then
|
||||||
|
zle redisplay
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
cd "$dir"
|
||||||
|
local ret=$?
|
||||||
|
zle skim-redraw-prompt
|
||||||
|
return $ret
|
||||||
|
}
|
||||||
|
zle -N skim-cd-widget
|
||||||
|
bindkey '\ec' skim-cd-widget
|
||||||
|
|
||||||
|
# CTRL-R - Paste the selected command from history into the command line
|
||||||
skim-history-widget() {
|
skim-history-widget() {
|
||||||
local selected num
|
local selected num
|
||||||
setopt localoptions noglobsubst noposixbuiltins pipefail no_aliases 2> /dev/null
|
setopt localoptions noglobsubst noposixbuiltins pipefail 2> /dev/null
|
||||||
selected=( $(fc -rl 1 |
|
selected=( $(fc -rl 1 |
|
||||||
SKIM_DEFAULT_OPTS="--height ${SKIM_TMUX_HEIGHT:-40%} $SKIM_DEFAULT_OPTS -n2..,.. --tiebreak=index --bind=ctrl-r:toggle-sort $SKIM_CTRL_R_OPTS --query=${(qqq)LBUFFER} +m" sk-tmux -d${SKIM_TMUX_HEIGHT} ))
|
SKIM_DEFAULT_OPTIONS="--height ${SKIM_TMUX_HEIGHT:-40%} $SKIM_DEFAULT_OPTIONS -n2..,.. --tiebreak=index $SKIM_CTRL_R_OPTS --query=${(qqq)LBUFFER} -m" $(__skimcmd)) )
|
||||||
local ret=$?
|
local ret=$?
|
||||||
if [ -n "$selected" ]; then
|
if [ -n "$selected" ]; then
|
||||||
num=$selected[1]
|
num=$selected[1]
|
||||||
|
@ -17,3 +84,5 @@ skim-history-widget() {
|
||||||
}
|
}
|
||||||
zle -N skim-history-widget
|
zle -N skim-history-widget
|
||||||
bindkey '^R' skim-history-widget
|
bindkey '^R' skim-history-widget
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
|
@ -23,7 +23,6 @@ zle -N down-line-or-beginning-search
|
||||||
|
|
||||||
[[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
|
[[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
|
||||||
[[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
|
[[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
|
||||||
bindkey "^R" __history_search
|
|
||||||
|
|
||||||
autoload -Uz compinit promptinit
|
autoload -Uz compinit promptinit
|
||||||
promptinit
|
promptinit
|
||||||
|
@ -83,6 +82,7 @@ function nv() {
|
||||||
export PATH="$PATH:$HOME/.anyenv/bin"
|
export PATH="$PATH:$HOME/.anyenv/bin"
|
||||||
eval "$(anyenv init -)"
|
eval "$(anyenv init -)"
|
||||||
export PATH="$(yarn global bin):$PATH"
|
export PATH="$(yarn global bin):$PATH"
|
||||||
|
# export SKIM_TMUX=1
|
||||||
|
|
||||||
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
|
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
|
||||||
export SDKMAN_DIR="$HOME/.sdkman"
|
export SDKMAN_DIR="$HOME/.sdkman"
|
||||||
|
|
Loading…
Add table
Reference in a new issue