-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from circled9/20231116
update 2023-11-16
- Loading branch information
Showing
8 changed files
with
63 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
eval "$(/opt/homebrew/bin/brew shellenv)" | ||
eval "$(starship init bash)" | ||
|
||
if [ -x /opt/homebrew/bin/anyenv ] | ||
then | ||
if ! [ -f /tmp/anyenv.bash.cache ] | ||
then | ||
anyenv init --no-rehash - bash > /tmp/anyenv.bash.cache | ||
fi | ||
source /tmp/anyenv.bash.cache | ||
fi | ||
|
||
export GOENV_ROOT="$HOME/.goenv" | ||
export PATH="$GOENV_ROOT/bin:$PATH" | ||
export PATH="$GOROOT/bin:$PATH" | ||
export PATH="$GOPATH/bin:$PATH" | ||
|
||
export MODULAR_HOME="$HOME/.modular" | ||
export PATH="$MODULAR_HOME/pkg/packages.modular.com_mojo/bin:$PATH" | ||
|
||
export PATH="$PATH:$HOME/Library/Application Support/JetBrains/Toolbox/scripts" | ||
export PATH="$PATH:$HOME/bin" | ||
|
||
if [ -f ~/.aliases ]; then | ||
. ~/.aliases | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[user] | ||
name = Matsui Masashi | ||
email = 5251092+circled9@users.noreply.github.com | ||
[init] | ||
defaultBranch = main | ||
[alias] | ||
co = checkout | ||
br = branch | ||
ci = commit | ||
st = status | ||
sw = switch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,27 @@ | ||
path+=("$HOME/bin", $path) | ||
|
||
eval "$(/opt/homebrew/bin/brew shellenv)" | ||
eval "$(starship init zsh)" | ||
|
||
if [ -x /opt/homebrew/bin/anyenv ] | ||
then | ||
if ! [ -f /tmp/anyenv.cache ] | ||
if ! [ -f /tmp/anyenv.zsh.cache ] | ||
then | ||
anyenv init - --no-rehash > /tmp/anyenv.cache | ||
zcompile /tmp/anyenv.cache | ||
anyenv init --no-rehash - zsh > /tmp/anyenv.zsh.cache | ||
zcompile /tmp/anyenv.zsh.cache | ||
fi | ||
source /tmp/anyenv.cache | ||
source /tmp/anyenv.zsh.cache | ||
fi | ||
|
||
export GOENV_ROOT="$HOME/.goenv" | ||
export PATH="$GOENV_ROOT/bin:$PATH" | ||
export PATH="$GOROOT/bin:$PATH" | ||
export PATH="$GOPATH/bin:$PATH" | ||
|
||
export MODULAR_HOME="$HOME/.modular" | ||
export PATH="$MODULAR_HOME/pkg/packages.modular.com_mojo/bin:$PATH" | ||
|
||
export PATH="$PATH:$HOME/Library/Application Support/JetBrains/Toolbox/scripts" | ||
export PATH="$PATH:$HOME/bin" | ||
|
||
if [ -f ~/.aliases ]; then | ||
. ~/.aliases | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters