Skip to content

Commit a379d8d

Browse files
author
theprimeagen
committed
feat: installation scripts + updates
1 parent e6cefd9 commit a379d8d

File tree

6 files changed

+21
-1
lines changed

6 files changed

+21
-1
lines changed

env/.tmux-sessionizer

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
#
77
# could be cool!!
88
# this means i could create a neovim plugin to shoot commands out to "scartch"
9+
if [[ "$(pwd)" == $HOME/personal ]]; then
10+
clear
11+
return
12+
fi
913
tmux new-window -dn scratch
1014
vim .
15+
clear
1116

env/.zsh_profile

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ addToPathFront $HOME/.local/.npm-global/bin
5050
addToPathFront $HOME/.local/scripts
5151
addToPathFront $HOME/.local/bin
5252
addToPathFront $HOME/.local/n/bin/
53+
addToPathFront $HOME/.local/apps/
54+
5355
# do i need this one?
5456
addToPathFront $HOME/.local/go/bin
5557
addToPathFront /usr/local/go/bin

env/.zshrc

+4
Original file line numberDiff line numberDiff line change
@@ -115,3 +115,7 @@ export PATH="$PNPM_HOME:$PATH"
115115
# Turso
116116
export PATH="$HOME/.turso:$PATH"
117117

118+
119+
# dune
120+
source $HOME/.dune/env/env.zsh
121+

runs/emoji

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env bash
2+
wget https://github.com/emojicode/emojicode/releases/download/v1.0-beta.2/Emojicode-1.0-beta.2-Linux-x86_64.tar.gz -O emojicode.tar.gz \
3+
&& tar -xzf emojicode.tar.gz && rm emojicode.tar.gz \
4+
&& cd Emojicode-1.0-beta.2-Linux-x86_64 && ./install.sh \
5+
&& cd .. && rm -r Emojicode-1.0-beta.2-Linux-x86_64
6+

runs/zed

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
3+
curl -f https://zed.dev/install.sh | sh

0 commit comments

Comments
 (0)