Cursor Settings
Export Cursor Settings
json
old machine: cmd+shift+p > export profile
new machine: cmd+shift+p > import profile
json
{
"window.commandCenter": 1,
"workbench.colorTheme": "Monokai Pro (Filter Spectrum)",
"explorer.autoReveal": false,
"editor.fontSize": 13,
"editor.fontFamily": "JetbrainsMono Nerd Font, Menlo, Monaco, 'Courier New', monospace",
"files.autoSave": "afterDelay",
"editor.lineHeight": 22,
"go.gopath": "/Users/kuga/go",
"go.goroot": "/opt/homebrew/opt/go@1.23/libexec",
"workbench.iconTheme": "vscode-jetbrains-icon-theme-2023-dark",
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"diffEditor.ignoreTrimWhitespace": false,
"editor.defaultColorDecorators": "never"
},
"files.associations": {
"*.j2": "jinja"
},
"[typescriptreact]": {
"editor.tabSize": 2,
"editor.insertSpaces": true
}
}
json
{
"dart.flutterSdkPath": "/Users/kuga/devops/flutter/sdk",
"workbench.colorTheme": "Monokai Pro (Filter Spectrum)",
"workbench.iconTheme": "vscode-jetbrains-icon-theme-2023-dark",
"editor.fontSize": 13,
"editor.fontFamily": "JetBrainsMono Nerd Font, Menlo, Monaco, 'Courier New', monospace",
"editor.lineHeight": 22,
"files.autoSave": "afterDelay",
"explorer.autoReveal": false,
"latex-workshop.latex.tools": [
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "lualatex",
"command": "lualatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "latexmk",
"tools": [
"latexmk"
]
},
{
"name": "latexmk (latexmkrc)",
"tools": [
"latexmk_rconly"
]
},
{
"name": "pdflatex -> bibtex -> pdflatex * 2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
},
{
"name": "latexmk (lualatex)",
"tools": [
"lualatexmk"
]
},
{
"name": "Compile Rnw files",
"tools": [
"rnw2tex",
"latexmk"
]
},
{
"name": "Compile Jnw files",
"tools": [
"jnw2tex",
"latexmk"
]
},
{
"name": "Compile Pnw files",
"tools": [
"pnw2tex",
"latexmk"
]
},
{
"name": "tectonic",
"tools": [
"tectonic"
]
}
]
}