Add vscode configs
This commit is contained in:
@@ -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
7
vscode/keybindings.json
Normal 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
60
vscode/settings.json
Normal 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
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user