Pressing enter
on an empty buffer displays an information-rich and pretty
dashboard.
Terminal: WezTerm – Theme: Tinacious Design – Font: Iosevka Term with partial ligatures – Prompt: Starship
- Top: Recent commits (
git log
) - Center: Current Status (hybrid of
git status
andgit diff --stat
) - Bottom: Files in the current directory (via
eza
)
Empty components, such as git status
in a clean repo, are automatically
hidden.
Clone this repository somewhere on your machine. This manual assumes
you are using ~/.zsh/
.
cd ~/.zsh # where to install the plugin
git clone https://github.com/chrisgrieser/zsh-magic-dashboard
Add the following to your ~/.zshrc
:
source ~/.zsh/zsh-magic-dashboard/magic_dashboard.zsh
I don't use a package manager, since they are mostly unnecessary and even increasing zsh loading time considerably.
I am open to pull requests adding instructions for package managers, though.
Export these variables in your ~/.zshrc
. The values displayed are the default.
# Size of the dashboard
export MAGIC_DASHBOARD_GITLOG_LINES=5
export MAGIC_DASHBOARD_FILES_LINES=6
# Disable dashboard in low terminal windows.
# (Useful for tmux or for terminals embedded in your IDE.)
export MAGIC_DASHBOARD_DISABLED_BELOW_TERM_HEIGHT=15
# Make commit hashes & files clickable. Requires `git-delta`.
export MAGIC_DASHBOARD_USE_HYPERLINKS=0 # set to `1` to enable
Just press enter
on an empty buffer. That's it!
The dashboard call also be called via _magic_dashboard
. One use case would be
to modify your cd
command to display the dashboard after the directory change.
function cd {
builtin cd "$@" && _magic_dashboard
}
The pretty git log is available independently via _gitlog
and accepts the same
arguments as git log
, for example:
# display the last ten log entry
_gitlog -n10
# call via git's core.pager, like git log
_gitlog
alias gl='_gitlog'
# Can also be piped to `fzf`. (Use the _gitlog-specific option `--no-graph` to
# disable the graph, which messes up a lot of fzf-related things.)
selected_hash=$(_gitlog --no-graph | fzf --ansi --no-sort | cut -d' ' -f1)
This plugin is based on Magic Enter by @dufferzafar.
About me
In my day job, I am a sociologist studying the social mechanisms underlying the
digital economy. For my PhD project, I investigate the governance of the app
economy and how software ecosystems manage the tension between innovation and
compatibility. If you are interested in this subject, feel free to get in touch.
Profiles