tangled
alpha
login
or
join now
davidgasquez.com
/
dotfiles
1
fork
atom
๐ง Where my dotfiles lives in harmony and peace, most of the time
1
fork
atom
overview
issues
pulls
pipelines
๐ง Update codex package install and zed links
davidgasquez.com
1 month ago
ca2e8861
1ec64611
+2
-2
2 changed files
expand all
collapse all
unified
split
Makefile
agents
setup.sh
+1
-1
Makefile
···
8
lint-sh:
9
@ rg --files -g '*.sh' -g 'scripts/*' -g '*/setup.sh' | xargs -r shellcheck -x
10
0
11
paru:
12
@ sudo pacman -S --needed base-devel
13
@ git clone https://aur.archlinux.org/paru.git /tmp/paru
···
34
@ mkdir -p "$(HOME)/.config/zed/"
35
@ ln -sf $(DOTFILES)/zed/settings.json "$(HOME)/.config/zed/settings.json"
36
@ ln -sf $(DOTFILES)/zed/keymap.json "$(HOME)/.config/zed/keymap.json"
37
-
@ ln -sf $(DOTFILES)/zed/tasks.json "$(HOME)/.config/zed/tasks.json"
38
39
.PHONY: terminal
40
terminal:
···
8
lint-sh:
9
@ rg --files -g '*.sh' -g 'scripts/*' -g '*/setup.sh' | xargs -r shellcheck -x
10
11
+
.PHONY: paru
12
paru:
13
@ sudo pacman -S --needed base-devel
14
@ git clone https://aur.archlinux.org/paru.git /tmp/paru
···
35
@ mkdir -p "$(HOME)/.config/zed/"
36
@ ln -sf $(DOTFILES)/zed/settings.json "$(HOME)/.config/zed/settings.json"
37
@ ln -sf $(DOTFILES)/zed/keymap.json "$(HOME)/.config/zed/keymap.json"
0
38
39
.PHONY: terminal
40
terminal:
+1
-1
agents/setup.sh
···
6
CODEX_DIR="${HOME}/.codex"
7
8
setup_codex() {
9
-
if ! pacman -Q openai-codex-autoup-bin >/dev/null 2>&1; then
10
paru -S --needed --noconfirm openai-codex-bin
11
fi
12
···
6
CODEX_DIR="${HOME}/.codex"
7
8
setup_codex() {
9
+
if ! pacman -Q openai-codex-bin >/dev/null 2>&1; then
10
paru -S --needed --noconfirm openai-codex-bin
11
fi
12