New Issues
to Done
in the ❮ Z-Shell ❯ Workspace | View Zenhub BoardTriage
to Todo
in the ❮ Z-Shell ❯ Workspace | View Zenhub BoardNew Issues
to Triage
in the ❮ Z-Shell ❯ Workspace | View Zenhub BoardNew Issues
to Backlog
in the ❮ Z-Shell ❯ Workspace | View Zenhub BoardNew Issues
to Backlog
in the ❮ Z-Shell ❯ Workspace | View Zenhub BoardNew Issues
to Triage
in the ❮ Z-Shell ❯ Workspace | View Zenhub BoardProduct Backlog
to Done
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardProduct Backlog
to Done
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardProduct Backlog
to Done
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardProduct Backlog
to Done
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardDown
in New Issues
in the ❮ Z-Shell ❯ WorkspaceNew Issues
to Triage
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardTodo
to Product Backlog
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardTodo
to Product Backlog
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardTodo
to Product Backlog
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardTodo
to Product Backlog
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardNew Issues
to In Progress
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardNew Issues
to In Progress
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardNew Issues
to Triage
in the ❮ Z-Shell ❯ Workspace | View ZenHub BoardNot sure what you mean by defaults. Zi is not framework-specific, so can use Oh-My-Zsh, Presto and etc., so it not limits you to something and most users have their own defaults, the only way to learn it is reading wiki while practising.
Here is user recently migrated from Oh-My-Zsh: https://github.com/Lunarequest/Dotfiles/blob/mistress/zsh/.zshrc
Some other example: https://github.com/z-shell/playground/tree/main/profiles
Is there any way to combine a zi ice
and zi snippet
into one command?
Like these:
zi ice lucid wait as'completion' blockf has'rg'
zi snippet https://github.com/BurntSushi/ripgrep/blob/master/complete/_rg
I simply think it'd look cleaner as a single command.
# Sets sane Zsh built-in environment options.
zmodule environment
# Provides handy git aliases and functions.
zmodule git
# Applies correct bindkeys for input events.
zmodule input
# Sets a custom terminal title.
zmodule termtitle
# Utility aliases and functions. Adds colour to ls, grep and less.
zmodule utility
# Install Zi tool
local cs_ok='7fab1ecb8d2ffbdb4aa98dd1e51cebaeaa4d8137e1de11938f3e0df24af262bb'
local cs=$(sha256sum <(curl -sL git.io/zi-loader) | awk '{print $1}')
[[ $cs_ok == $cs ]] && {
source <(curl -sL git.io/zi-loader)
zzinit
} || {
print -P "%F{160}▓▒░ Houston, we have a problem, the %F{226}$cs%F{160} do not match\!%f%b"
exit 1
}
# Zsh Plugins
zi load zsh-users/zsh-syntax-highlighting
zi load zsh-users/zsh-autosuggestions
zi load zsh-users/zsh-completions
zi load romkatv/powerlevel10k
zi load psprint/zsh-navigation-tools
zi snippet "OMZ::plugins/command-not-found/command-not-found.plugin.zsh"
zi snippet "https://github.com/zsh-users/zsh-history-substring-search/blob/master/zsh-history-substring-search.zsh"
zi snippet "https://github.com/felixr/docker-zsh-completion/blob/master/docker-zsh-completion.plugin.zsh"
zi snippet "https://github.com/supercrabtree/k/blob/master/k.sh"