diff --git a/profiles/main/data/extensions.yml b/profiles/main/data/extensions.yml index e1e5337..b362500 100644 --- a/profiles/main/data/extensions.yml +++ b/profiles/main/data/extensions.yml @@ -2,8 +2,6 @@ disabled: - id: yzhang.markdown-all-in-one uuid: 98790d67-10fa-497c-9113-f6c7489207b2 enabled: - - id: alcyon-dev.git-skip - uuid: 75523d75-029e-497d-9151-fda0d14ed9eb - id: arturock.gitstash uuid: c6f98943-7f9b-4776-b2a8-409227a481e2 - id: azdavis.rjsonnet @@ -78,6 +76,8 @@ enabled: uuid: 3a830e4d-a4de-4ae0-98ff-f136e4c76cbb - id: PKief.material-icon-theme uuid: 5db78037-f674-459f-a236-db622c427c5b + - id: pucelle.vscode-css-navigation + uuid: f97a6398-d553-44cf-9ebf-54e8dbf8d3fb - id: redhat.ansible uuid: f8cb4642-bc5c-46a1-be34-0977e817406c - id: redhat.vscode-xml diff --git a/profiles/main/data/keybindings-linux.json b/profiles/main/data/keybindings-linux.json index 4aca0a9..3940b91 100644 --- a/profiles/main/data/keybindings-linux.json +++ b/profiles/main/data/keybindings-linux.json @@ -62,5 +62,15 @@ "key": "ctrl+e", "command": "git.openChange", "when": "!isInDiffEditor" + }, + { + "key": "ctrl+e ctrl+d", + "command": "git.stageSelectedRanges", + "when": "editorTextFocus && !operationInProgress && resourceScheme == 'file'" + }, + { + "key": "ctrl+k ctrl+alt+s", + "command": "-git.stageSelectedRanges", + "when": "editorTextFocus && !operationInProgress && resourceScheme == 'file'" } ] \ No newline at end of file diff --git a/profiles/main/data/settings.json b/profiles/main/data/settings.json index 41771e2..bd5c435 100644 --- a/profiles/main/data/settings.json +++ b/profiles/main/data/settings.json @@ -190,4 +190,5 @@ "origin/main", "main" ], + "diffEditor.maxComputationTime": 0, } \ No newline at end of file