Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save collegeimprovements/7b99ef02388da4db36d5c0ec6c70c58c to your computer and use it in GitHub Desktop.
Save collegeimprovements/7b99ef02388da4db36d5c0ec6c70c58c to your computer and use it in GitHub Desktop.
VS Code Settings
{
"workbench.colorTheme": "Noctis",
"window.zoomLevel": 0,
"files.autoSave": "onFocusChange",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"spellright.language": [
"en"
],
"spellright.documentTypes": [
"markdown",
"latex",
"plaintext",
"shellscript"
],
"workbench.iconTheme": "vscode-icons",
"[elixir]": {
"editor.defaultFormatter": "JakeBecker.elixir-ls"
},
"editor.formatOnSave": true,
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"files.exclude": {
".vscode": false,
"**/_build": true,
"**/.cache": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.idea": true,
"**/.svn": true,
"**/.vscode": true,
"**/android": true,
"**/bower_components": true,
"**/deps": true,
"**/dist": true,
"**/ios": true,
"**/node_modules": true,
"**/tmp": true,
"**/yarn.lock": true,
"**/.elixir_ls": true
},
"files.watcherExclude": {
"**/_build": true,
"**/.cache": true,
"**/.git/objects/**": true,
"**/node_modules/**": true,
"**/tmp": true,
"**/.elixir_ls": true
},
"search.exclude": {
"**/.cache": true,
"**/.DS_Store": true,
"**/.git": true,
"**/bower_components": true,
"**/coverage": true,
"**/node_modules": true,
"**/tmp": true,
"**/.elixir_ls": true
},
"files.associations": {
"*.mdx": "markdown",
"*.exs": "elixir",
".env": "makefile",
".env.development": "makefile",
".env.production": "makefile"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"html": "html"
},
"terminal.external.osxExec": "kitty.app",
"emmet.showSuggestionsAsSnippets": true,
"emmet.triggerExpansionOnTab": true,
"todo-tree.highlights.enabled": true,
"workbench.activityBar.visible": true,
"terminal.integrated.fontSize": 14,
"editor.fontSize": 14,
"editor.renderWhitespace": "boundary",
"workbench.sideBar.location": "left",
// "eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"typescript.updateImportsOnFileMove.enabled": "always",
"git.autofetch": true,
"editor.smoothScrolling": true,
"files.defaultLanguage": "txt",
"search.location": "panel",
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"editor.find.autoFindInSelection": "multiline",
"search.enableSearchEditorPreview": true
}
@collegeimprovements
Copy link
Author

Extensions

adpyke.vscode-sql-formatter
AlDuncanson.react-hooks-snippets
alefragnani.project-manager
apollographql.vscode-apollo
arturock.gitstash
azemoh.one-monokai
ban.spellright
bierner.color-info
BriteSnow.vscode-toggle-quotes
ChakrounAnas.turbo-console-log
chiragpat.tomorrow-and-tomorrow-night-operator-mono-theme
christian-kohler.path-intellisense
codezombiech.gitignore
CoenraadS.bracket-pair-colorizer-2
dbaeumer.vscode-eslint
deerawan.vscode-dash
drKnoxy.eslint-disable-snippets
eamodio.gitlens
elixir-lsp.elixir-ls
emilast.LogFileHighlighter
esbenp.prettier-vscode
fabiospampinato.vscode-todo-plus
FallenMax.styled-components-extractor
florinpatrascu.vscode-elixir-snippets
formulahendry.auto-close-tag
formulahendry.auto-rename-tag
foxundermoon.shell-format
ghmcadams.lintlens
GitHub.vscode-pull-request-github
Gruntfuggly.todo-tree
howardzuo.vscode-git-tags
humao.rest-client
inu1255.easy-snippet
ionutvmi.path-autocomplete
JakeBecker.elixir-ls
jock.svg
jonkwheeler.styled-components-snippets
jpoissonnier.vscode-styled-components
jpotterm.simple-vim
kisstkondoros.vscode-gutter-preview
konstantin.wrapSelection
liviuschera.noctis
mdickin.markdown-shortcuts
mhutchie.git-graph
mjmcloug.vscode-elixir
ms-azuretools.vscode-docker
ms-edgedevtools.vscode-edge-devtools
ms-vscode-remote.remote-ssh
ms-vscode-remote.remote-ssh-edit
mushan.vscode-paste-image
paulmolluzzo.convert-css-in-js
pflannery.vscode-versionlens
pnp.polacode
Prisma.vscode-graphql
qezhu.gitlink
raynigon.nginx-formatter
rebornix.ruby
rebornix.toggle
rogalmic.bash-debug
rogalmic.zsh-debug
sadesyllas.elixir-module-autoname
shaharkazaz.git-merger
SimonSiefke.svg-preview
svipas.control-snippets
vincaslt.highlight-matching-tag
vincentkos.snippet-creator
VisualStudioExptTeam.vscodeintellicode
vscode-icons-team.vscode-icons
wayou.vscode-todo-highlight
whizkydee.material-palenight-theme
william-voyek.vscode-nginx
wingrunr21.vscode-ruby
wmaurer.change-case

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment