Skip to content

Commit

Permalink
feat: use Python 3.8, update Raycast config, minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
benyap committed Mar 24, 2022
1 parent 68baf47 commit 9bbbf68
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 10 deletions.
12 changes: 9 additions & 3 deletions home/.config/fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,15 @@ set -gx GPG_TTY (tty)

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Load jEnv
set PATH $HOME/.jenv.bin $PATH
status --is-interactive; and source (jenv init -|psub)
# Load jenv (Java env manager)
# Disabled as not really used at the moment
# set PATH $HOME/.jenv.bin $PATH
# status --is-interactive; and source (jenv init -|psub)

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Load Python 3.8
set PATH /usr/local/opt/python@3.8/bin $PATH

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Expand Down
Binary file modified home/.config/raycast/config.rayconfig
Binary file not shown.
5 changes: 0 additions & 5 deletions home/.gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,3 @@
path = ~/.gitconfig.local
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
3 changes: 3 additions & 0 deletions home/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ $RECYCLE.BIN/
# Custom
*.backup
*.old

# fish
fishd.tmp.*
4 changes: 4 additions & 0 deletions home/Library/Application Support/Code/User/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -380,5 +380,9 @@
"commands": ["whichkey.searchBindings"]
}
],
"prettier.printWidth": 100,
"files.exclude": {
"**/__pycache__": true
},
"window.zoomLevel": 1
}
4 changes: 3 additions & 1 deletion scripts/tasks/install_apps_brew/vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ _install_vscode_plugins() {
_install_vscode_plugin "Color Picker" "anseki.vscode-color"
_install_vscode_plugin "Tailwind CSS IntelliSense" "bradlc.vscode-tailwindcss"
_install_vscode_plugin "Better TOML" "bungcip.better-toml"
_install_vscode_plugin "NDJSON Colorizer" "buster.ndjson-colorizer"
_install_vscode_plugin "Firestore Rules" "chflick.firecode"
_install_vscode_plugin "ESLint" "dbaeumer.vscode-eslint"
_install_vscode_plugin "XML Tools" "dotjoshjohnson.xml"
Expand All @@ -53,10 +54,11 @@ _install_vscode_plugins() {
_install_vscode_plugin "Color Highlight" "naumovs.color-highlight"
_install_vscode_plugin "Material Icon Theme" "pkief.material-icon-theme"
_install_vscode_plugin "Fish" "skyapps.fish-vscode"
_install_vscode_plugin "Which Key" "vspacecode.whichkey"
_install_vscode_plugin "Jest Snapshot Language Support" "tlent.jest-snapshot-language-support"
_install_vscode_plugin "ShellCheck" "timonwong.shellcheck"
_install_vscode_plugin "Highlight Matching Tag" "vincaslt.highlight-matching-tag"
_install_vscode_plugin "Vim" "vscodevim.vim"
_install_vscode_plugin "Which Key" "vspacecode.whichkey"
_install_vscode_plugin "TODO Highlight" "wayou.vscode-todo-highlight"
_install_vscode_plugin "VimL" "xadillax.viml"
_install_vscode_plugin "One Dark Pro" "zhuangtongfa.material-theme"
Expand Down
2 changes: 1 addition & 1 deletion scripts/tasks/install_utilities/python.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

install_python() {
brew_install "Python3" "python3"
brew_install "Python@3.8" "python@3.8"
execute "pip3 install --upgrade pip" "Update pip"
}

0 comments on commit 9bbbf68

Please sign in to comment.