many shell things
This commit is contained in:
parent
26445dcc83
commit
f094cdec07
5 changed files with 7 additions and 25 deletions
|
@ -2,24 +2,17 @@
|
||||||
# misc - Set general Zsh config options here, or change plugin settings.
|
# misc - Set general Zsh config options here, or change plugin settings.
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
|
||||||
# Options
|
# Options
|
||||||
#
|
|
||||||
|
|
||||||
# Undo options from plugins
|
# Undo options from plugins
|
||||||
setopt NO_BEEP # Be quiet!
|
setopt NO_BEEP # Be quiet!
|
||||||
setopt NO_HIST_BEEP # Be quiet!
|
setopt NO_HIST_BEEP # Be quiet!
|
||||||
|
|
||||||
#
|
# start gpg agent
|
||||||
# OMZ
|
export GPG_TTY=$(tty)
|
||||||
#
|
gpgconf --launch gpg-agent
|
||||||
MAGIC_ENTER_GIT_COMMAND="$MAGIC_ENTER_OTHER_COMMAND && git status -sb"
|
|
||||||
|
|
||||||
#
|
# OMZ
|
||||||
# Zsh-Utils
|
MAGIC_ENTER_GIT_COMMAND="$MAGIC_ENTER_OTHER_COMMAND && git status -sb"
|
||||||
#
|
|
||||||
# The belek/zsh-utils completion plugin also introduces compstyles. Let's use that!
|
|
||||||
(( ! $+functions[compstyle_zshzoo_setup] )) || compstyle_zshzoo_setup
|
|
||||||
|
|
||||||
# let make handle it's own shell completion
|
# let make handle it's own shell completion
|
||||||
zstyle ':completion::complete:make:*:targets' call-command true
|
zstyle ':completion::complete:make:*:targets' call-command true
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
# utility
|
# utility
|
||||||
romkatv/zsh-bench kind:path
|
romkatv/zsh-bench kind:path
|
||||||
|
|
||||||
|
|
||||||
ohmyzsh/ohmyzsh path:lib/clipboard.zsh
|
ohmyzsh/ohmyzsh path:lib/clipboard.zsh
|
||||||
ohmyzsh/ohmyzsh path:plugins/copybuffer
|
ohmyzsh/ohmyzsh path:plugins/copybuffer
|
||||||
ohmyzsh/ohmyzsh path:plugins/copyfile
|
ohmyzsh/ohmyzsh path:plugins/copyfile
|
||||||
|
@ -11,17 +10,13 @@ ohmyzsh/ohmyzsh path:plugins/magic-enter
|
||||||
ohmyzsh/ohmyzsh path:plugins/fancy-ctrl-z
|
ohmyzsh/ohmyzsh path:plugins/fancy-ctrl-z
|
||||||
|
|
||||||
belak/zsh-utils path:history
|
belak/zsh-utils path:history
|
||||||
belak/zsh-utils path:utility
|
|
||||||
|
|
||||||
zdharma-continuum/fast-syntax-highlighting kind:defer
|
zdharma-continuum/fast-syntax-highlighting kind:defer
|
||||||
Aloxaf/fzf-tab kind:defer
|
Aloxaf/fzf-tab kind:defer
|
||||||
|
|
||||||
# zsh-users/zsh-completions path:src kind:fpath
|
|
||||||
|
|
||||||
junegunn/fzf path:shell/completion.zsh
|
junegunn/fzf path:shell/completion.zsh
|
||||||
junegunn/fzf path:shell/key-bindings.zsh
|
junegunn/fzf path:shell/key-bindings.zsh
|
||||||
|
|
||||||
# Source everything in $ZDOTDIR/rc.d prior to wrapping up.
|
# Source everything in $ZDOTDIR/rc.d prior to wrapping up.
|
||||||
mattmc3/zshrc.d
|
mattmc3/zshrc.d
|
||||||
~/.config/zsh/plugins/zexists
|
~/.config/zsh/plugins/zexists
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
is-tty && alias lsd="lsd --icon never"
|
is-tty && alias lsd="lsd --icon never"
|
||||||
alias ls="lsd --group-directories-first --color=always"
|
alias ls="lsd"
|
||||||
alias lt='lsd --tree --depth=3'
|
alias lt='lsd --tree --depth=3'
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
#!/usr/bin/env zsh
|
|
||||||
# bun completions
|
|
||||||
[[ -s "$HOME/.bun/_bun" ]] && source "$HOME/.bun/_bun"
|
|
||||||
# bun
|
|
||||||
export BUN_INSTALL="$HOME/.bun"
|
|
||||||
path=("$BUN_INSTALL/bin" $path)
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env zsh
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
export DENO_INSTALL="$HOME/.deno"; \
|
export DENO_INSTALL="$HOME/.deno"
|
||||||
path=("$DENO_INSTALL/bin" $path)
|
path=("$DENO_INSTALL/bin" $path)
|
||||||
|
|
Loading…
Reference in a new issue