diff options
author | Martin Fischer <martin@push-f.com> | 2024-12-02 20:25:06 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2024-12-11 08:37:52 +0100 |
commit | 9d1363f2fa33bf590148ece64457272502a310dc (patch) | |
tree | 701d39bc812904731f2594905ea585b78ffd4f35 /user/VSCodium | |
parent | f5af22a8d108c9008b1a2b6c99e65ff910518288 (diff) |
add developer tools
Diffstat (limited to 'user/VSCodium')
-rw-r--r-- | user/VSCodium/User/settings.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/user/VSCodium/User/settings.json b/user/VSCodium/User/settings.json new file mode 100644 index 0000000..470101c --- /dev/null +++ b/user/VSCodium/User/settings.json @@ -0,0 +1,26 @@ +{ + "files.insertFinalNewline": true, + + /** UI **/ + "window.zoomLevel": 1, + "workbench.tree.indent": 14, + + // hide inlay hints unless Ctrl+Alt is pressed + "editor.inlayHints.enabled": "offUnlessPressed", + + "editor.mouseWheelZoom": true, + + /** Extension config **/ + "vim.useSystemClipboard": true, + + "better-comments.tags": [ + { + "tag": "todo", + "color": "#FF8C00" + }, + { + "tag": "future", + "color": "#bd93f9" + } + ], +} |