From 1e360611ad1d7d97bcba6635a80af4c729762b84 Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Fri, 11 Sep 2020 04:09:30 +0200 Subject: [PATCH] Add VSCode config --- .config/VSCodium/User/settings.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .config/VSCodium/User/settings.json diff --git a/.config/VSCodium/User/settings.json b/.config/VSCodium/User/settings.json new file mode 100644 index 0000000..9d0e7a0 --- /dev/null +++ b/.config/VSCodium/User/settings.json @@ -0,0 +1,23 @@ +{ + "editor.fontLigatures": true, + "editor.lineNumbers": "relative", + "editor.minimap.enabled": false, + "editor.multiCursorModifier": "ctrlCmd", + "editor.rulers": [ + 80, + 100 + ], + "editor.suggestSelection": "first", + "git.autofetch": true, + "keyboard.dispatch": "keyCode", + "trailing-spaces.backgroundColor": "#E06C75", + "trailing-spaces.highlightCurrentLine": false, + "vim.normalModeKeyBindingsNonRecursive": [ + { + "before": ["C-w"], + "commands": [":q"] + } + ], + "workbench.activityBar.visible": false, + "workbench.colorTheme": "One Dark Pro", +} \ No newline at end of file