修改mimeapps.list的配置方式
This commit is contained in:
69
modules/home/vscode/conf/keybindings.json
Normal file
69
modules/home/vscode/conf/keybindings.json
Normal file
@@ -0,0 +1,69 @@
|
||||
// Place your key bindings in this file to override the defaultsauto[]
|
||||
[
|
||||
{
|
||||
"key": "shift+alt+f",
|
||||
"command": "workbench.action.findInFiles"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+f",
|
||||
"command": "-workbench.action.findInFiles"
|
||||
},
|
||||
{
|
||||
"key": "shift+alt+f",
|
||||
"command": "workbench.action.terminal.searchWorkspace",
|
||||
"when": "terminalFocus && terminalProcessSupported && terminalProcessSupported && terminalTextSelected"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+f",
|
||||
"command": "-workbench.action.terminal.searchWorkspace",
|
||||
"when": "terminalFocus && terminalProcessSupported && terminalProcessSupported && terminalTextSelected"
|
||||
},
|
||||
{
|
||||
"key": "shift+alt+f",
|
||||
"command": "workbench.view.search",
|
||||
"when": "!searchViewletVisible && config.search.mode == 'view'"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+f",
|
||||
"command": "-workbench.view.search",
|
||||
"when": "!searchViewletVisible && config.search.mode == 'view'"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+f",
|
||||
"command": "editor.action.formatDocument",
|
||||
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+i",
|
||||
"command": "-editor.action.formatDocument",
|
||||
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+f",
|
||||
"command": "editor.action.formatDocument.none",
|
||||
"when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorReadonly"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+i",
|
||||
"command": "-editor.action.formatDocument.none",
|
||||
"when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorReadonly"
|
||||
},
|
||||
{
|
||||
"key": "shift+alt+o",
|
||||
"command": "workbench.action.gotoSymbol"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+o",
|
||||
"command": "-workbench.action.gotoSymbol"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+o",
|
||||
"command": "editor.action.organizeImports",
|
||||
"when": "editorTextFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)source\\.organizeImports\\b/"
|
||||
},
|
||||
{
|
||||
"key": "shift+alt+o",
|
||||
"command": "-editor.action.organizeImports",
|
||||
"when": "editorTextFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)source\\.organizeImports\\b/"
|
||||
}
|
||||
]
|
||||
57
modules/home/vscode/conf/settings.json
Normal file
57
modules/home/vscode/conf/settings.json
Normal file
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"[css]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[html]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[javascript]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[json]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[jsonc]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[less]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[typescript]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[typescriptreact]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[vue]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[nix]": {
|
||||
"editor.defaultFormatter": "jnoortheen.nix-ide"
|
||||
},
|
||||
"editor.formatOnPaste": false,
|
||||
"editor.largeFileOptimizations": false,
|
||||
"editor.tabSize": 4,
|
||||
"editor.unicodeHighlight.allowedLocales": {
|
||||
"zh-hans": true
|
||||
},
|
||||
"editor.unicodeHighlight.nonBasicASCII": false,
|
||||
"explorer.confirmDelete": false,
|
||||
"git.enableSmartCommit": true,
|
||||
"javascript.updateImportsOnFileMove.enabled": "always",
|
||||
"nix.formatterPath": "nixpkgs-fmt",
|
||||
"security.workspace.trust.untrustedFiles": "open",
|
||||
"terminal.integrated.fontFamily": "'Source Code Pro', 'JetBrainsMono Nerd Font'",
|
||||
"terminal.integrated.tabs.location": "left",
|
||||
"typescript.updateImportsOnFileMove.enabled": "always",
|
||||
"workbench.iconTheme": "material-icon-theme",
|
||||
"workbench.colorTheme": "Default Light Modern",
|
||||
"augment.chat.userGuidelines": "Always response in 中文",
|
||||
"augment.completions.enableAutomaticCompletions": true,
|
||||
"editor.fontFamily": "'Source Code Pro', 'JetBrainsMono Nerd Font'",
|
||||
"github.copilot.nextEditSuggestions.enabled": true,
|
||||
"update.mode": "none",
|
||||
"github.copilot.chat.localeOverride": "zh-CN",
|
||||
"github.copilot.selectedCompletionModel": "GPT-4.1",
|
||||
"diffEditor.ignoreTrimWhitespace": false
|
||||
}
|
||||
Reference in New Issue
Block a user