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
brew 'fish' | |
brew 'fisher' | |
brew 'helix' | |
brew 'colima' | |
brew 'docker' | |
brew 'kubectl' | |
brew 'kubectx' | |
brew 'openjdk' | |
brew 'gradle' | |
brew 'mas' |
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
{ | |
"Use Non-ASCII Font" : false, | |
"Tags" : [ | |
], | |
"Ansi 12 Color" : { | |
"Red Component" : 0.34509803921568627, | |
"Color Space" : "sRGB", | |
"Blue Component" : 1, | |
"Alpha Component" : 1, |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Battery_barChart_position</key> | |
<integer>0</integer> | |
<key>Battery_bar_chart_box</key> | |
<false/> | |
<key>Battery_bar_chart_color</key> | |
<string>system</string> |
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
[ | |
{ | |
"key": "alt+cmd+q", | |
"command": "workbench.action.closeWindow", | |
"when": "!editorIsOpen && !multipleEditorGroups" | |
}, | |
{ | |
"key": "cmd+w", | |
"command": "-workbench.action.closeWindow", | |
"when": "!editorIsOpen && !multipleEditorGroups" |
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
brew bundle | |
echo /opt/homebrew/bin/fish | sudo tee -a /etc/shells | |
chsh -s /opt/homebrew/bin/fish | |
fish | |
set -x LANG en_US.UTF-8 | |
set -x LC_ALL en_US.UTF-8 | |
fisher install pure-fish/pure | |
fisher install IlanCosman/tide@v5 | |
fish_add_path /opt/homebrew/bin | |
fish_add_path /opt/homebrew/opt/openjdk/bin |
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
{ | |
"go.toolsManagement.autoUpdate": true, | |
"workbench.iconTheme": "vscode-icons", | |
"editor.minimap.enabled": false, | |
"workbench.editor.showTabs": "single", | |
"files.exclude": { | |
"**/.svelte-kit": true, | |
"**/node_modules": true | |
}, | |
"redhat.telemetry.enabled": false, |