Skip to content

Instantly share code, notes, and snippets.

@xypnox
Last active October 14, 2019 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xypnox/591de93a0431ab59260e0b387cdf88ea to your computer and use it in GitHub Desktop.
Save xypnox/591de93a0431ab59260e0b387cdf88ea to your computer and use it in GitHub Desktop.
Snapshot of settings.json of VSCode
{
// Editor
"workbench.colorTheme": "Material Theme Ocean",
"workbench.iconTheme": "material-icon-theme",
"window.menuBarVisibility": "toggle",
"window.titleBarStyle": "native",
"window.zoomLevel": 0,
"editor.wordWrap": "on",
"editor.minimap.renderCharacters": false,
"editor.tabSize": 2,
"editor.minimap.showSlider": "always",
"editor.smoothScrolling": true,
"editor.occurrencesHighlight": false,
"workbench.statusBar.feedback.visible": false,
"breadcrumbs.enabled": false,
// Font
"editor.fontFamily": "\"Iosevka Nerd Font\"",
"editor.fontLigatures": true,
"editor.fontSize": 18,
"terminal.integrated.fontFamily": "\"Iosevka Nerd Font\"",
"git.autofetch": true,
// Latex Settings (Specifically for live latex viewing)
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
]
}
],
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%.tex"
],
"env": {}
}
],
"latex-workshop.view.pdf.viewer": "tab",
"files.trimTrailingWhitespace": true,
// ESLint
// formatting using eslint
// let editor format using prettier for all other files
"editor.formatOnSave": true,
// available through eslint plugin in vscode
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"[python]": {
"editor.tabSize": 4
},
"workbench.startupEditor": "newUntitledFile",
"rust.clippy_preference": "on",
"rust.all_features": true,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"python.dataScience.sendSelectionToInteractiveWindow": false,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveServer.settings.donotShowInfoMsg": true,
"C_Cpp.default.cppStandard": "c++11",
"C_Cpp.clang_format_path": "/usr/bin/clang-format",
"C_Cpp.clang_format_style": "llvm",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment