We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a76059 commit df790bbCopy full SHA for df790bb
3 files changed
homebrew/install.sh
100644
100755
version-manager/install.sh
@@ -0,0 +1,13 @@
1
+#!/bin/sh
2
+#
3
+# This is a topic for version managers and getting languages all setup
4
+# These days I'm using Mise which is like asdf at an even higher level
5
+# I need a bunch of languages right now, so this gets all the plugins installed
6
7
8
+curl https://mise.run | sh
9
+echo 'eval "$(~/.local/bin/mise activate zsh)"'
10
+
11
+mise plugin install perl
12
+mise plugin install php
13
zsh/zshrc.symlink
@@ -53,3 +53,5 @@ zle -N down-line-or-beginning-search
53
bindkey "^[[A" up-line-or-beginning-search # Up
54
bindkey "^[[B" down-line-or-beginning-search # Down
55
export PATH="/usr/local/opt/yq@3/bin:$PATH"
56
+eval "$(/opt/homebrew/bin/brew shellenv)"
57
+eval "$(~/.local/bin/mise activate zsh)"
0 commit comments