Compare commits
No commits in common. "7003ae18ba3e4bbd7cb74a10ad45710fa157bfcc" and "60734cf717593f2cf7c42c68a91af3830036f85c" have entirely different histories.
7003ae18ba
...
60734cf717
3 changed files with 8 additions and 10 deletions
8
dot-config/zsh/interactive/skim.zsh
Normal file
8
dot-config/zsh/interactive/skim.zsh
Normal file
|
@ -0,0 +1,8 @@
|
|||
#! zsh
|
||||
if (( $+commands[sk] )); then
|
||||
# TODO: figure out where lotabout/skim puts these Zsh support files on non-Homebrew installs
|
||||
[[ $- == *i* ]] && source /usr/local/opt/sk/share/zsh/site-functions/completion.zsh 2>/dev/null
|
||||
source /usr/local/opt/sk/share/zsh/site-functions/key-bindings.zsh
|
||||
else
|
||||
bindkey '^R' history-incremental-search-backward
|
||||
fi
|
|
@ -2,15 +2,6 @@
|
|||
|
||||
local -a newbins
|
||||
|
||||
# asdf
|
||||
export ASDF_CONFIG_FILE=$XDG_CONFIG_HOME/asdf/asdfrc
|
||||
export ASDF_DATA_DIR=$XDG_DATA_HOME/asdf
|
||||
# Don't add asdf's directories to the command path, because evaluating its
|
||||
# version resolution every time you call a tool is really slow. Instead just
|
||||
# configure asdf to respect XDG base directories, then rely on Direnv to
|
||||
# resolve paths properly for each project, as described here:
|
||||
# https://github.com/zimfw/asdf#how-to-configure-asdf-to-work-with-the-direnv-installed-with-my-system-package-manager
|
||||
|
||||
# docker
|
||||
export DOCKER_CONFIG=$XDG_CONFIG_HOME/docker
|
||||
|
||||
|
|
|
@ -39,7 +39,6 @@ zmodule mollifier/cd-gitroot --fpath . --autoload cd-gitroot
|
|||
zmodule zsh-users/zsh-autosuggestions
|
||||
|
||||
(( ${+commands[brew]} )) && zmodule homebrew
|
||||
zeval-if-installed atuin 'atuin init zsh --disable-up-arrow'
|
||||
zeval-if-installed direnv 'direnv hook zsh'
|
||||
zeval-if-installed scmpuff 'scmpuff init --shell=zsh'
|
||||
|
||||
|
|
Loading…
Reference in a new issue