aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-01-03 00:45:13 +0900
committernsfisis <nsfisis@gmail.com>2023-01-15 13:40:34 +0900
commita856443120fae163adb4d8392112967e7e25c8f1 (patch)
tree2c8eea6fd6b982582db043da3793f333254e8527
parent12b054b05fba9ae7188751cf07e23dacd414a744 (diff)
downloaddotfiles-a856443120fae163adb4d8392112967e7e25c8f1.tar.gz
dotfiles-a856443120fae163adb4d8392112967e7e25c8f1.tar.zst
dotfiles-a856443120fae163adb4d8392112967e7e25c8f1.zip
misc: add Deno to INSTALL.txt
-rw-r--r--.zshrc1
-rw-r--r--INSTALL.txt5
2 files changed, 6 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc
index 5990946..30bf832 100644
--- a/.zshrc
+++ b/.zshrc
@@ -436,4 +436,5 @@ export PATH="/usr/local/opt/ruby/bin:$PATH"
export PATH="$HOME/go/bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
+export PATH="$HOME/.deno/bin:$PATH"
export PATH=/usr/local/go/bin:$PATH
diff --git a/INSTALL.txt b/INSTALL.txt
index 142213b..40dbf1b 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -85,5 +85,10 @@ $ cargo install alacritty
$ go install github.com/rhysd/vim-startuptime@latest
+$ [[ ! -d ~/tmp ]] && mkdir; cd ~/tmp
+$ curl -fsSL https://deno.land/x/install/install.sh > deno_install.sh
+$ sh deno_install.sh
+$ # deno upgrade
+
$ snap install zig --classic --edge
```