From 56d4eecbeed0cfd5fbe393c652c2c52005646885 Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Fri, 7 Jul 2023 22:29:38 -0400 Subject: [PATCH] Removing VSCode for now --- .chezmoiignore | 4 -- README.md | 4 -- .../private_Code - OSS/User/keybindings.json | 30 -------------- .../private_Code - OSS/User/settings.json | 40 ------------------- 4 files changed, 78 deletions(-) delete mode 100644 dot_config/private_Code - OSS/User/keybindings.json delete mode 100644 dot_config/private_Code - OSS/User/settings.json diff --git a/.chezmoiignore b/.chezmoiignore index e027cda..2c85441 100644 --- a/.chezmoiignore +++ b/.chezmoiignore @@ -1,9 +1,5 @@ **/README.md -{{ if (hasKey . "code") | not }} -.config/Code\ -\ OSS/ -{{- end }} - {{ if (hasKey . "firefox") | not }} .mozilla {{- end }} diff --git a/README.md b/README.md index f195f03..6f62e79 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,6 @@ See the configuration file for enabling | Application | Min Version | Notes | | ----------- | ----------- | ----- | | Firefox | ??? | Configures more secure and private `profile.js` settings | -| Code - OSS | ??? | Sets various extension settings, including activating the [One Dark Pro](https://marketplace.visualstudio.com/items?itemName=zhuangtongfa.Material-theme) color theme and [Material Icon Theme](https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme) | # Chezmoi Configuration File (Optional) @@ -96,9 +95,6 @@ Create the chezmoi configuration at `~/.config/chezmoi/chezmoi.toml`: email = "git@email.com" name = "My User" ssl_verify = false - -[data.code] # Code OSS (VSCode alternative) - enabled = true ``` diff --git a/dot_config/private_Code - OSS/User/keybindings.json b/dot_config/private_Code - OSS/User/keybindings.json deleted file mode 100644 index e85b388..0000000 --- a/dot_config/private_Code - OSS/User/keybindings.json +++ /dev/null @@ -1,30 +0,0 @@ -// Place your key bindings in this file to override the defaults -[ - // Disable Find in Files using Ctrl+Shift+F - { - "key": "ctrl+shift+f", - "command": "-workbench.action.findInFiles" - }, - - // Format Code: ctrl+shift+f - { - "key": "ctrl+shift+f", - "command": "notebook.formatCell", - "when": "editorHasDocumentFormattingProvider && editorTextFocus && inCompositeEditor && notebookEditable && !editorReadonly && activeEditor == 'workbench.editor.notebook'" - }, - { - "key": "ctrl+shift+i", - "command": "-notebook.formatCell", - "when": "editorHasDocumentFormattingProvider && editorTextFocus && inCompositeEditor && notebookEditable && !editorReadonly && activeEditor == 'workbench.editor.notebook'" - }, - { - "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" - } -] \ No newline at end of file diff --git a/dot_config/private_Code - OSS/User/settings.json b/dot_config/private_Code - OSS/User/settings.json deleted file mode 100644 index a5f7dbd..0000000 --- a/dot_config/private_Code - OSS/User/settings.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "editor.bracketPairColorization.enabled": true, - "editor.guides.bracketPairs":"active", - "editor.quickSuggestions": { - "other": true, - "comments": false, - "strings": false - }, - "redhat.telemetry.enabled": false, - "vim.hlsearch": true, - "vim.leader": ",", - "vim.useCtrlKeys": true, - "vim.useSystemClipboard": true, - "vim.normalModeKeyBindings": [ - { - "before": ["", "s", "v"], - "commands": [":vsplit"] - }, - { - "before": ["", "s", "h"], - "commands": [":hsplit"] - }, - { - "before": ["", "t"], - "commands": [":tabn"] - }, - { - "before": ["", "T"], - "commands": [":tabp"] - }, - { - "before": ["", "w"], - "after": ["", "w"] - } - ], - "workbench.iconTheme": "material-icon-theme", - "diffEditor.ignoreTrimWhitespace": true, - "telemetry.telemetryLevel": "off", - "workbench.colorTheme": "One Dark Pro Darker" -}