Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 1.11 KB

File metadata and controls

32 lines (27 loc) · 1.11 KB

Shell Config

Bootstrap

Configure git to manage the dotfile bare repo

Manage dot file with git, see https://www.atlassian.com/git/tutorials/dotfiles

Bootstraping can be done by the brave of heart with:

curl -fsS https://raw.githubusercontent.com/suderio/dotfiles/refs/heads/main/install.sh | sh

The install.sh script is literately made of the following code blocks in this page.

Config in a new machine

Clone, don’t show untracked files and checkout

git clone --bare git@github.com:suderio/dotfiles "$HOME/.local/dotfiles"
git --git-dir="$HOME"/.local/dotfiles/ --work-tree="$HOME" config --local status.showUntrackedFiles no
git --git-dir="$HOME"/.local/dotfiles/ --work-tree="$HOME" checkout

Install mise and setup (this will take a long time)

curl https://mise.run | sh
mise up

Tasks

Mise tasks with all the tools, bells and whistles that can’t be installed with mise tools.

mise tasks ls