zsh config in flux
This commit is contained in:
parent
c64058ba6f
commit
d9065b65f2
6 changed files with 10 additions and 19 deletions
|
@ -6,3 +6,6 @@ export VIV_NO_SETUPTOOLS=1
|
||||||
export VIV_RUN_MODE='semi-ephemeral'
|
export VIV_RUN_MODE='semi-ephemeral'
|
||||||
|
|
||||||
export TSM_CONFIG="$XDG_CONFIG_HOME/tsm/config-$(hostname).usu"
|
export TSM_CONFIG="$XDG_CONFIG_HOME/tsm/config-$(hostname).usu"
|
||||||
|
|
||||||
|
export MAGIC_ENTER_GIT_COMMAND="$MAGIC_ENTER_OTHER_COMMAND && git status -sb"
|
||||||
|
export MAGIC_ENTER_OTHER_COMMAND="ls -l ."
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
#
|
|
||||||
# misc - Set general Zsh config options here, or change plugin settings.
|
|
||||||
#
|
|
||||||
|
|
||||||
# Options
|
|
||||||
# Undo options from plugins
|
|
||||||
setopt NO_BEEP # Be quiet!
|
|
||||||
setopt NO_HIST_BEEP # Be quiet!
|
|
||||||
|
|
||||||
# OMZ
|
|
||||||
MAGIC_ENTER_GIT_COMMAND="$MAGIC_ENTER_OTHER_COMMAND && git status -sb"
|
|
||||||
MAGIC_ENTER_OTHER_COMMAND="ls -l ."
|
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
# pre-reqs
|
# pre-reqs
|
||||||
# ${ZDOTDIR}/plugins/p10k-instant
|
QuarticCat/zsh-smartcache
|
||||||
mattmc3/zephyr path:plugins/zfunctions
|
mattmc3/zephyr path:plugins/zfunctions
|
||||||
|
|
||||||
# general use-plugins
|
# general use-plugins
|
||||||
mattmc3/zephyr path:plugins/history
|
mattmc3/zephyr path:plugins/history
|
||||||
mattmc3/zephyr path:plugins/utility
|
mattmc3/zephyr path:plugins/utility
|
||||||
|
|
||||||
ohmyzsh/ohmyzsh path:plugins/copybuffer
|
|
||||||
ohmyzsh/ohmyzsh path:plugins/copyfile
|
|
||||||
ohmyzsh/ohmyzsh path:plugins/extract
|
ohmyzsh/ohmyzsh path:plugins/extract
|
||||||
ohmyzsh/ohmyzsh path:plugins/magic-enter
|
ohmyzsh/ohmyzsh path:plugins/magic-enter
|
||||||
ohmyzsh/ohmyzsh path:plugins/fancy-ctrl-z
|
ohmyzsh/ohmyzsh path:plugins/fancy-ctrl-z
|
||||||
|
@ -29,6 +27,7 @@ ${ZDOTDIR}/plugins/prompt
|
||||||
# wrap-up
|
# wrap-up
|
||||||
mattmc3/zephyr path:plugins/confd
|
mattmc3/zephyr path:plugins/confd
|
||||||
${ZDOTDIR}/plugins/zexists
|
${ZDOTDIR}/plugins/zexists
|
||||||
|
${ZDOTDIR}/plugins/clipboard
|
||||||
|
|
||||||
# deferred
|
# deferred
|
||||||
zsh-users/zsh-autosuggestions
|
zsh-users/zsh-autosuggestions
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
zstyle ':antidote:bundle' file ${ZDOTDIR:-~}/.zplugins
|
zstyle ':antidote:bundle' file ${ZDOTDIR:-~}/.zplugins
|
||||||
zstyle ':antidote:static' file ${ZDOTDIR:-~}/.zplugins.zsh
|
zstyle ':antidote:static' file ${ZDOTDIR:-~}/.zplugins.zsh
|
||||||
zstyle ':antidote:bundle' use-friendly-names 'yes'
|
zstyle ':antidote:bundle' use-friendly-names 'yes'
|
||||||
|
zstyle ':antidote:bundle:*' zcompile 'yes'
|
||||||
zstyle ':antidote:plugin:*' defer-options '-p'
|
zstyle ':antidote:plugin:*' defer-options '-p'
|
||||||
|
|
||||||
# Set this to whatever you want to use to edit a command
|
# Set this to whatever you want to use to edit a command
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
# fi
|
# fi
|
||||||
# prompt powerlevel10k
|
# prompt powerlevel10k
|
||||||
|
|
||||||
eval "$(oh-my-posh init zsh --config $XDG_CONFIG_HOME/omp/config.yml)"
|
# eval "$(oh-my-posh init zsh --config $XDG_CONFIG_HOME/omp/config.yml)"
|
||||||
|
|
||||||
|
smartcache eval oh-my-posh init zsh --config $XDG_CONFIG_HOME/omp/config.yml
|
||||||
|
|
||||||
|
|
|
@ -4,5 +4,6 @@ if (( $+commands[eza] )); then
|
||||||
export _ZO_FZF_OPTS="--preview 'command eza --tree --icons=always --color=always {2..}'"
|
export _ZO_FZF_OPTS="--preview 'command eza --tree --icons=always --color=always {2..}'"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
eval "$(zoxide init zsh --cmd cd)"
|
# eval "$(zoxide init zsh --cmd cd)"
|
||||||
|
smartcache eval zoxide init zsh --cmd cd
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue