-
-
Save duduribeiro/c434ec50c860500e371ed8887237cc1c to your computer and use it in GitHub Desktop.
VS Code configs
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
Show hidden characters
{ | |
"name": "app", | |
"dockerComposeFile": "docker-compose.yml", | |
"service": "dev", | |
"workspaceFolder": "/usr/local/src/app", | |
"extensions": [ | |
"eamodio.gitlens", | |
"sleistner.vscode-fileutils", | |
"rebornix.Ruby", | |
"castwide.solargraph", | |
"kaiwood.endwise", | |
"elliotlarson.ruby-around-the-block" | |
], | |
"settings": { | |
"terminal.integrated.automationShell.linux": "/bin/bash", | |
"solargraph.commandPath": "/usr/local/bundle/bin/solargraph", | |
"solargraph.diagnostics": false, | |
"ruby.useBundler": false, | |
"ruby.pathToBundler": "/usr/local/bin/bundle" | |
} | |
} |
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 is from my settings.json and IT IS SUPER CRUCIAL to make stuff work correctly wrt your ruby installation | |
{ | |
// this shell is used for things like running tasks or tools like solargraph. | |
// I use plain bash because it just starts faster than my zsh setup | |
"terminal.integrated.automationShell.osx": "/bin/bash", | |
// this profile is used for the terminal pane under linux so ie when I work inside a container | |
"terminal.integrated.profiles.linux": { | |
"zsh": { | |
"path": "/bin/zsh", | |
"args": [ | |
"-l" | |
] | |
} | |
}, | |
// this profile is used for the terminal pane under MacOS | |
"terminal.integrated.profiles.osx": { | |
"zsh": { | |
"path": "/bin/zsh", | |
"args": [ | |
"-l" | |
] | |
} | |
}, | |
// here I assign these profiles as the default ones for each OS | |
"terminal.integrated.defaultProfile.linux": "zsh", | |
"terminal.integrated.defaultProfile.osx": "zsh" | |
} |
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
alefragnani.project-manager | |
asvetliakov.vscode-neovim | |
castwide.solargraph | |
cssho.vscode-svgviewer | |
dbaeumer.vscode-eslint | |
eg2.vscode-npm-script | |
elliotlarson.ruby-around-the-block | |
GrapeCity.gc-excelviewer | |
kaiwood.endwise | |
Kosai106.ruby-syntax-replacer | |
ms-azuretools.vscode-docker | |
ms-toolsai.jupyter | |
ms-vscode-remote.remote-containers | |
ms-vscode.Theme-TomorrowKit | |
rebornix.ruby | |
sianglim.slim | |
sleistner.vscode-fileutils | |
tamasfe.even-better-toml | |
wingrunr21.vscode-ruby | |
yzhang.markdown-all-in-one |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment