dotbot is used to handle installation of my dotfiles.
git clone --recurse-submodules [email protected]:laurigates/dotfiles
Basic workstation installation:
./install workstation
Install a specific configuration:
./install rust
List available configs:
./install --list
Run zkbd
to configure keyboard
You have to disable system level shortcuts for ctrl+left arrow and ctrl+right arrow to be able to use those shortcuts in zsh.
Build the container image using docker or podman:
docker build . -t laurigates/dotfiles
podman build . -t laurigates/dotfiles --format docker
Run the image:
docker run --rm -it laurigates/dotfiles:latest
podman run --rm -it laurigates/dotfiles:latest
Display everything that happens when starting the shell, run a simple command and filter the output.
zsh -x -c 'printenv PATH' 2>&1 | rg PATH
nvim --clean -u init.lua