-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJustfile
More file actions
23 lines (18 loc) · 722 Bytes
/
Justfile
File metadata and controls
23 lines (18 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Dotfiles tasks
# List available commands
[default]
list:
@just --list
# Dump current Homebrew packages to Brewfile
brew-dump:
brew bundle dump -f --file ~/.config/brew/Brewfile
# Install packages from Brewfile
brew-install:
brew bundle --file ~/.config/brew/Brewfile
# Regenerate starship.toml from config and themes
starship-build:
cat ~/.config/starship/config.toml ~/.config/starship/themes/*.toml > ~/.config/starship/starship.toml
# Symlink VS Code settings to Application Support
vscode-link:
ln -sf ~/.config/vscode/settings.json ~/Library/Application\ Support/Code/User/settings.json
ln -sf ~/.config/vscode/keybindings.json ~/Library/Application\ Support/Code/User/keybindings.json