-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJustfile
87 lines (68 loc) · 1.53 KB
/
Justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# -*- Justfile -*-
set dotenv-filename := "config/.env.dev"
app_name := "lenslocked"
app_port := "4100"
db_name := "lenslocked-db"
db_user := "baloo"
coverage_file := "coverage.out"
# List the available justfile recipes.
@default:
just --list
# List the lines of code in the project.
loc:
scc --remap-unknown "-*- Justfile -*-":"justfile"
# Deploy all dotfiles.
[group('dotfiles')]
all: bash ghostty git gpg hg js npm nvim readline tex tmux vim zsh
# Deploy bash dotfiles.
[group('dotfiles')]
bash:
stow -t ~ bash --dotfiles
# Deploy ghostty dotfiles.
[group('dotfiles')]
ghostty:
stow -t ~/.config/ghostty ghostty --dotfiles
# Deploy git dotfiles.
[group('dotfiles')]
git:
stow -t ~/.config/git git --dotfiles
# Deploy gpg dotfiles.
[group('dotfiles')]
gpg:
stow -t ~/.gnupg gpg --dotfiles
# Deploy hg (Mercurial) dotfiles.
[group('dotfiles')]
hg:
stow -t ~ hg --dotfiles
# Deploy JavaScript dotfiles.
[group('dotfiles')]
js:
stow -t ~ js --dotfiles
# Deploy npm dotfiles.
[group('dotfiles')]
npm:
stow -t ~ npm --dotfiles
# Deploy Neovim dotfiles.
[group('dotfiles')]
nvim:
stow -t ~/.config/nvim nvim --dotfiles
# Deploy readline dotfiles.
[group('dotfiles')]
readline:
stow -t ~ readline --dotfiles
# Deploy TeX/LaTeX dotfiles.
[group('dotfiles')]
tex:
stow -t ~ tex --dotfiles
# Deploy tmux dotfiles.
[group('dotfiles')]
tmux:
stow -t ~/.config/tmux tmux --dotfiles
# Deploy vim dotfiles.
[group('dotfiles')]
vim:
stow -t ~ vim --dotfiles
# Deploy zsh (inlucding p10k) dotfiles.
[group('dotfiles')]
zsh:
stow -t ~ zsh --dotfiles