Skip to content

Commit

Permalink
Merge pull request #243 from himkt/deps/setup-uv
Browse files Browse the repository at this point in the history
feat(deps): add uv
  • Loading branch information
himkt authored Nov 9, 2024
2 parents d7a9fde + d7787b7 commit 2d825dd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ NOCOLOR := $(shell tput sgr0)
all docs brew \
base cli gui \
cargo git \
nvim poetry tmux zsh
nvim poetry tmux uv zsh

all: clean base docs

Expand Down Expand Up @@ -52,6 +52,9 @@ sheldon: sheldon_clean
tmux: tmux_clean
$(PWD)/tmux/bin/setup.sh

uv: uv_clean
curl -LsSf https://astral.sh/uv/install.sh | sh

wezterm: wezterm_clean
$(PWD)/wezterm/bin/setup.sh

Expand Down Expand Up @@ -90,6 +93,9 @@ sheldon_clean:
tmux_clean:
rm -rf $(HOME)/.tmux.conf

uv_clean:
rm -rf $(HOME)/.local/bin/uv $(HOME)/.local/bin/uvx

wezterm_clean:
rm -rf $(HOME)/.wezterm.lua

Expand Down

0 comments on commit 2d825dd

Please sign in to comment.