parent
b46a127d97
commit
6c0cf4d248
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"editor.fontFamily": "Menlo, Monaco, 'Hack NF', 'MesloLGL NF', monospace",
|
||||
"editor.fontFamily": "'Hack', 'Hack Nerd Font Mono', Menlo, Monaco, 'MesloLGL NF', monospace",
|
||||
"editor.fontSize": 14,
|
||||
"editor.wordWrap": "on",
|
||||
"editor.wordWrapColumn": 120,
|
||||
|
@ -9,6 +9,7 @@
|
|||
"editor.lineNumbers": "relative",
|
||||
"editor.bracketPairColorization.enabled": true,
|
||||
"editor.guides.bracketPairs": "active",
|
||||
"editor.occurrencesHighlight": true,
|
||||
"settings.cycle": [
|
||||
{
|
||||
"id": "relativeLineNumbers",
|
||||
|
@ -57,7 +58,7 @@
|
|||
// "vim.easymotionMarkerForegroundColorTwoChar": "#F4F917",
|
||||
// "vim.easymotionMarkerFontFamily": "Monaco, Menlo, monospace",
|
||||
"vim.surround": true,
|
||||
"editor.tabSize": 2,
|
||||
"editor.tabSize": 4,
|
||||
"[markdown]": {
|
||||
"editor.defaultFormatter": "yzhang.markdown-all-in-one",
|
||||
"editor.tabSize": 2
|
||||
|
@ -82,8 +83,9 @@
|
|||
// 设置光标颜色
|
||||
"editorCursor.foreground": "#e9e6e6"
|
||||
},
|
||||
"extensions.ignoreRecommendations": false,
|
||||
"extensions.ignoreRecommendations": true,
|
||||
"files.associations": {
|
||||
"*.def": "cpp",
|
||||
"*.cjson": "jsonc",
|
||||
"*.wxss": "css",
|
||||
"*.wxs": "javascript"
|
||||
|
@ -100,7 +102,8 @@
|
|||
"**/.factorypath": true,
|
||||
"**/.project": true,
|
||||
"**/.settings": true,
|
||||
"**/*.swp": true
|
||||
"**/*.swp": true,
|
||||
"**/*.o": true,
|
||||
},
|
||||
"python.jediEnabled": false,
|
||||
"files.autoSave": "afterDelay",
|
||||
|
@ -126,10 +129,11 @@
|
|||
"args": ["--nologo"]
|
||||
}
|
||||
},
|
||||
"terminal.integrated.fontFamily": "'Hack', 'MesloLGL Nerd Font', 'Cascadia Code PL'",
|
||||
"terminal.integrated.fontFamily": "'Hack', 'Hack Nerd Font Mono', 'MesloLGL Nerd Font', 'Cascadia Code PL'",
|
||||
"files.watcherExclude": {
|
||||
"**/__pycache__": true,
|
||||
"**/node_modules": true,
|
||||
"**/*.o": true,
|
||||
},
|
||||
"workbench.settings.editor": "ui",
|
||||
"workbench.iconTheme": "material-icon-theme",
|
||||
|
@ -156,7 +160,6 @@
|
|||
"Vimium",
|
||||
"Vomnibar"
|
||||
],
|
||||
"workbench.activityBar.visible": true,
|
||||
"explorer.confirmDelete": false,
|
||||
"C_Cpp.clang_format_sortIncludes": true,
|
||||
"terminal.integrated.copyOnSelection": true,
|
||||
|
@ -315,13 +318,30 @@
|
|||
},
|
||||
"editor.scrollbar.vertical": "hidden",
|
||||
"terminal.integrated.detectLocale": "off",
|
||||
"editor.codeLensFontFamily": "Menlo, Monaco, 'Hack NF', 'MesloLGL NF', monospace",
|
||||
"editor.inlayHints.fontFamily": "Menlo, Monaco, 'Hack NF', 'MesloLGL NF', monospace",
|
||||
"editor.codeLensFontFamily": "'Hack', 'Hack Nerd Font Mono', Menlo, Monaco, 'Hack NF', 'MesloLGL NF', monospace",
|
||||
"editor.inlayHints.fontFamily": "'Hack Nerd Font Mono', Menlo, Monaco, 'Hack NF', 'MesloLGL NF', monospace",
|
||||
"C_Cpp.files.exclude": {
|
||||
"**/.idea": true,
|
||||
"**/.vscode": true,
|
||||
"**/.vs": true
|
||||
},
|
||||
"redhat.telemetry.enabled": false,
|
||||
"C_Cpp.default.compilerPath": "",
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
"window.commandCenter": false,
|
||||
"C_Cpp.autocompleteAddParentheses": true,
|
||||
"C_Cpp.default.cppStandard": "c++11",
|
||||
"C_Cpp.default.cStandard": "c99",
|
||||
"C_Cpp.workspaceParsingPriority": "medium",
|
||||
"workbench.editor.empty.hint": "hidden",
|
||||
"vim.cursorStylePerMode.insert": "line",
|
||||
"vim.cursorStylePerMode.normal": "block",
|
||||
"vim.cursorStylePerMode.replace": "underline",
|
||||
"vim.handleKeys": {
|
||||
"<C-d>": true,
|
||||
"<C-s>": false,
|
||||
"<C-z>": false
|
||||
},
|
||||
// "[latex]": {
|
||||
// "editor.defaultFormatter": "James-Yu.latex-workshop"
|
||||
// }
|
||||
|
|
Loading…
Reference in New Issue