Add vscode configs

This commit is contained in:
2020-10-05 22:01:35 +02:00
parent cfd0623a3a
commit 2c3df11fd1
3 changed files with 71 additions and 0 deletions

View File

@@ -47,3 +47,7 @@ dotfiles:
to: .config/dunstrc to: .config/dunstrc
- from: redshift/redshift.conf - from: redshift/redshift.conf
to: .config/redshift.conf to: .config/redshift.conf
- from: vscode/settings.json
to: .config/Code/User/settings.json
- from: vscode/keybindings.json
to: .config/Code/User/keybindings.json

7
vscode/keybindings.json Normal file
View File

@@ -0,0 +1,7 @@
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+3",
"command": "workbench.action.terminal.focus"
}
]

60
vscode/settings.json Normal file
View File

@@ -0,0 +1,60 @@
{
"workbench.colorTheme": "Visual Studio Light",
"vim.neovimPath": "/usr/bin/nvim",
"explorer.confirmDelete": false,
"window.zoomLevel": 0,
"terraform.telemetry.enabled": false,
"editor.formatOnSave": true,
"vim.gdefault": true,
"vim.visualstar": true,
"vim.enableNeovim": true,
"git.detectSubmodulesLimit": 50,
"files.autoSave": "onFocusChange",
"editor.fontFamily": "'Inconsolata','Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.accessibilitySupport": "off",
"editor.lineNumbers": "relative",
"editor.mouseWheelZoom": true,
"editor.renderWhitespace": "none",
"editor.cursorSurroundingLines": 7,
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"editor.minimap.size": "fill",
"files.eol": "\n",
"files.hotExit": "off",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"workbench.enableExperiments": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.activityBar.visible": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.tree.indent": 12,
"window.menuBarVisibility": "toggle",
"window.title": "${rootName}${separator}${dirty}${activeEditorShort}${separator}VSCode",
"explorer.confirmDragAndDrop": false,
"explorer.incrementalNaming": "smart",
"search.smartCase": true,
"extensions.ignoreRecommendations": true,
"terminal.external.linuxExec": "urxvt",
"problems.showCurrentInStatus": true,
"problems.decorations.enabled": false,
"update.mode": "none",
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"ansible.dockerImage": "",
"vim.cursorStylePerMode.normal": "block",
"vim.cursorStylePerMode.insert": "line",
"vim.cursorStylePerMode.replace": "underline",
"vim.easymotion": true,
"vim.hlsearch": true,
"vim.leader": "<space>",
"workbench.colorCustomizations": {
"statusBar.background": "#005f5f",
"statusBar.noFolderBackground": "#005f5f",
"statusBar.debuggingBackground": "#005f5f"
},
"vim.vimrc.enable": true,
"editor.fontSize": 15,
"rust-client.disableRustup": true,
"rust-client.autoStartRls": false,
"terminal.integrated.mouseWheelScrollSensitivity": 3
}