Skip to content

Instantly share code, notes, and snippets.

@crazyc4t
Last active June 5, 2023 20:48
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 crazyc4t/7dcb22a88189e0a56c581992ebf8831e to your computer and use it in GitHub Desktop.
Save crazyc4t/7dcb22a88189e0a56c581992ebf8831e to your computer and use it in GitHub Desktop.
VSCode's Settings - Syncing
[
{
"id": "aaron-bond.better-comments",
"name": "better-comments",
"publisher": "aaron-bond",
"version": "3.0.2"
},
{
"id": "astro-build.astro-vscode",
"name": "astro-vscode",
"publisher": "astro-build",
"version": "1.0.5"
},
{
"id": "bungcip.better-toml",
"name": "better-toml",
"publisher": "bungcip",
"version": "0.3.2"
},
{
"id": "enkia.tokyo-night",
"name": "tokyo-night",
"publisher": "enkia",
"version": "0.9.9"
},
{
"id": "esbenp.prettier-vscode",
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "9.12.0"
},
{
"id": "golang.go",
"name": "go",
"publisher": "golang",
"version": "0.38.0"
},
{
"id": "icrawl.discord-vscode",
"name": "discord-vscode",
"publisher": "icrawl",
"version": "5.8.0"
},
{
"id": "James-Yu.latex-workshop",
"name": "latex-workshop",
"publisher": "James-Yu",
"version": "9.8.2"
},
{
"id": "jeanp413.open-remote-ssh",
"name": "open-remote-ssh",
"publisher": "jeanp413",
"version": "0.0.36"
},
{
"id": "JeffersonQin.latex-snippets-jeff",
"name": "latex-snippets-jeff",
"publisher": "JeffersonQin",
"version": "1.2.3"
},
{
"id": "ms-azuretools.vscode-docker",
"name": "vscode-docker",
"publisher": "ms-azuretools",
"version": "1.24.0"
},
{
"id": "nonoroazoro.syncing",
"name": "syncing",
"publisher": "nonoroazoro",
"version": "3.3.4"
},
{
"id": "PKief.material-icon-theme",
"name": "material-icon-theme",
"publisher": "PKief",
"version": "4.26.0"
},
{
"id": "torn4dom4n.latex-support",
"name": "latex-support",
"publisher": "torn4dom4n",
"version": "3.10.0"
},
{
"id": "unifiedjs.vscode-mdx",
"name": "vscode-mdx",
"publisher": "unifiedjs",
"version": "1.3.0"
},
{
"id": "vscodevim.vim",
"name": "vim",
"publisher": "vscodevim",
"version": "1.25.2"
},
{
"id": "yzane.markdown-pdf",
"name": "markdown-pdf",
"publisher": "yzane",
"version": "1.4.4"
},
{
"id": "zhuangtongfa.material-theme",
"name": "material-theme",
"publisher": "zhuangtongfa",
"version": "3.15.8"
}
]
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+b",
"command": "workbench.action.quickOpenNavigatePreviousInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "ctrl+shift+e",
"command": "-workbench.action.quickOpenNavigatePreviousInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "ctrl+b",
"command": "-workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+b",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+\\",
"command": "workbench.action.terminal.toggleTerminal",
"when": "terminal.active"
},
{
"key": "ctrl+`",
"command": "-workbench.action.terminal.toggleTerminal",
"when": "terminal.active"
},
{
"key": "ctrl+p",
"command": "workbench.actions.view.problems",
"when": "workbench.panel.markers.view.active"
},
{
"key": "ctrl+shift+m",
"command": "-workbench.actions.view.problems",
"when": "workbench.panel.markers.view.active"
},
{
"key": "ctrl+,",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+pageup",
"command": "-workbench.action.previousEditor"
},
{
"key": "ctrl+.",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+pagedown",
"command": "-workbench.action.nextEditor"
},
{
"key": "tab",
"command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "ctrl+down",
"command": "-selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "down",
"command": "-selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
}
]
{
"workbench.iconTheme": "material-icon-theme",
"files.autoSave": "afterDelay",
"editor.fontFamily": "Hack Nerd Font",
"editor.fontSize": 16,
"terminal.external.linuxExec": "alacritty",
"terminal.integrated.fontSize": 16,
"editor.formatOnSave": true,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"redhat.telemetry.enabled": false,
"go.toolsManagement.autoUpdate": true,
"latex-workshop.intellisense.biblatexJSON.replace": {},
"latex-workshop.latex.tools": [
{
"name": "lualatexmk",
"command": "latexmk",
"args": [
"-lualatex",
"-shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
},
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
},
// {
// "name": "xelatexmk",
// "command": "latexmk",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "-xelatex",
// "-outdir=%OUTDIR%",
// "%DOC%"
// ],
// "env": {}
// },
// {
// "name": "pdflatex",
// "command": "pdflatex",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "%DOC%"
// ],
// "env": {}
// },
{
"name": "bibtex",
"command": "bibtex",
"args": ["%DOCFILE%"],
"env": {}
}
],
"latex-workshop.latex.recipes": [
{
"name": "lualatexmk",
"tools": ["lualatexmk"]
},
{
"name": "latexmk",
"tools": ["latexmk"]
}
],
"workbench.colorTheme": "Tokyo Night",
"[astro]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
{
// Place your snippets for latex here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"Begin latex document": {
"prefix": "initex",
"body": [
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment