mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 16:41:43 +05:30
Initial commit after removing aal history
This commit is contained in:
49
.config/Code/User/keybindings.json
Executable file
49
.config/Code/User/keybindings.json
Executable file
@@ -0,0 +1,49 @@
|
||||
// Place your key bindings in this file to override the defaults
|
||||
[
|
||||
{
|
||||
"key": "ctrl+alt+b",
|
||||
"command": "bookmarks.toggle",
|
||||
"when": "editorTextFocus"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+t",
|
||||
"command": "workbench.action.terminal.new"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+`",
|
||||
"command": "-workbench.action.terminal.new"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+f t",
|
||||
"command": "workbench.action.terminal.focus"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+alt+right",
|
||||
"command": "editor.emmet.action.nextEditPoint"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+alt+t",
|
||||
"command": "editor.emmet.action.matchTag"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+alt+p",
|
||||
"command": "editor.emmet.action.wrapWithAbbreviation"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+alt+t",
|
||||
"command": "workbench.action.terminal.focus"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+alt+t",
|
||||
"command": "workbench.action.focusActiveEditorGroup",
|
||||
"when": "terminalFocus"
|
||||
},
|
||||
{
|
||||
"key": "alt+e",
|
||||
"command": "workbench.action.focusActiveEditorGroup"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+alt+e",
|
||||
"command": "python.execInTerminal"
|
||||
}
|
||||
]
|
||||
48
.config/Code/User/settings.json
Normal file
48
.config/Code/User/settings.json
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"telemetry.enableTelemetry": false,
|
||||
"telemetry.enableCrashReporter": false,
|
||||
"extensions.showRecommendationsOnlyOnDemand": true,
|
||||
|
||||
"workbench.colorTheme": "Material Theme Darker High Contrast",
|
||||
"workbench.iconTheme": "material-icon-theme",
|
||||
"editor.fontFamily": "'FuraCode Nerd Font', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
|
||||
"terminal.integrated.fontFamily": "FuraCode Nerd Font",
|
||||
"editor.fontLigatures": true,
|
||||
|
||||
"shellcheck.run": "onSave",
|
||||
"shellcheck.exclude": [2181],
|
||||
|
||||
"editor.wordWrap": "on",
|
||||
"editor.minimap.enabled": false,
|
||||
"workbench.startupEditor": "newUntitledFile",
|
||||
"bookmarks.navigateThroughAllFiles": true,
|
||||
"diffEditor.renderSideBySide": false,
|
||||
"files.autoSave": "afterDelay",
|
||||
"editor.multiCursorModifier": "ctrlCmd",
|
||||
|
||||
"bracketPairColorizer.forceUniqueOpeningColor": true,
|
||||
"bracketPairColorizer.rulerPosition": "Full",
|
||||
"bracketPairColorizer.showBracketsInRuler": true,
|
||||
|
||||
//Below reduces the Activity Bar size
|
||||
"window.zoomLevel": -1,
|
||||
"editor.fontSize": 16,
|
||||
"terminal.integrated.fontSize": 16,
|
||||
|
||||
"window.menuBarVisibility": "toggle",
|
||||
"git.enableSmartCommit": true,
|
||||
"bracketPairColorizer.highlightActiveScope": true,
|
||||
|
||||
"prettier.tabWidth": 4,
|
||||
"prettier.useTabs": true,
|
||||
"editor.formatOnSave": true,
|
||||
"prettier.printWidth": 85,
|
||||
"[html]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"es6-css-minify.minifyOnSave": "yes",
|
||||
"es6-css-minify.onSaveDelay": 10,
|
||||
"git.autofetch": true,
|
||||
"diffEditor.ignoreTrimWhitespace": true,
|
||||
"explorer.confirmDragAndDrop": false
|
||||
}
|
||||
Reference in New Issue
Block a user