|
| 1 | +{ |
| 2 | + "editor.renderWhitespace": "all", |
| 3 | + "editor.renderControlCharacters": true, |
| 4 | + "workbench.colorTheme": "Dracula", |
| 5 | + // My monospace font is configured via fontconfig |
| 6 | + "editor.fontFamily": "'monospace', monospace", |
| 7 | + "update.showReleaseNotes": false, |
| 8 | + "telemetry.telemetryLevel": "off", |
| 9 | + "files.exclude": { |
| 10 | + "**/target": true |
| 11 | + }, |
| 12 | + "workbench.editor.showTabs": "single", |
| 13 | + "vscode-neovim.neovimExecutablePaths.linux": "/usr/bin/nvim", |
| 14 | + "files.trimFinalNewlines": true, |
| 15 | + "files.trimTrailingWhitespace": true, |
| 16 | + "cSpell.userWords": [ |
| 17 | + "clippy", |
| 18 | + "neovim", |
| 19 | + "rustc", |
| 20 | + "sidekiq", |
| 21 | + "sysroot" |
| 22 | + ], |
| 23 | + "rust-analyzer.inlayHints.enable": false, |
| 24 | + "rust-analyzer.files.excludeDirs": [ |
| 25 | + ".cargo", |
| 26 | + "clippy-mini-macro-test" |
| 27 | + ], |
| 28 | + "rust-analyzer.rustcSource": "discover", |
| 29 | + "rust-analyzer.updates.channel": "nightly", |
| 30 | + "vscode-neovim.neovimExecutablePaths.darwin": "/opt/homebrew/bin/nvim", |
| 31 | + "editor.accessibilitySupport": "off", |
| 32 | + "files.insertFinalNewline": true, |
| 33 | + "extensions.experimental.affinity": { |
| 34 | + "asvetliakov.vscode-neovim": 1 |
| 35 | + }, |
| 36 | + "redhat.telemetry.enabled": false, |
| 37 | + "editor.minimap.autohide": true, |
| 38 | + "editor.minimap.scale": 2, |
| 39 | + "editor.minimap.showSlider": "always", |
| 40 | + "workbench.iconTheme": "vscode-icons", |
| 41 | + "workbench.editor.enablePreview": false, |
| 42 | + "terminal.integrated.profiles.osx": { |
| 43 | + "zsh": { |
| 44 | + "path": "/bin/zsh", |
| 45 | + "args": [ |
| 46 | + "-l", |
| 47 | + "-i" |
| 48 | + ] |
| 49 | + } |
| 50 | + }, |
| 51 | + "[ruby]": { |
| 52 | + "editor.defaultFormatter": "Shopify.ruby-lsp", |
| 53 | + "editor.formatOnSave": true, |
| 54 | + "editor.formatOnType": true, |
| 55 | + "editor.tabSize": 2, |
| 56 | + "editor.insertSpaces": true, |
| 57 | + "editor.rulers": [ |
| 58 | + 120 |
| 59 | + ], |
| 60 | + "editor.semanticHighlighting.enabled": true |
| 61 | + }, |
| 62 | + "[markdown]": { |
| 63 | + "editor.formatOnSave": false |
| 64 | + }, |
| 65 | + "projectManager.git.baseFolders": [ |
| 66 | + "~/code/" |
| 67 | + ], |
| 68 | + "workbench.startupEditor": "none", |
| 69 | + "editor.smoothScrolling": true, |
| 70 | + "editor.scrollbar.horizontal": "hidden", |
| 71 | + "editor.scrollbar.vertical": "hidden", |
| 72 | + "editor.minimap.renderCharacters": false, |
| 73 | + "editor.snippetSuggestions": "top", |
| 74 | + "workbench.activityBar.location": "bottom", |
| 75 | + "breadcrumbs.enabled": false, |
| 76 | + "window.menuBarVisibility": "toggle", |
| 77 | + "terminal.integrated.scrollback": 10000, |
| 78 | + "remote.SSH.useLocalServer": false, |
| 79 | + "window.customTitleBarVisibility": "auto", |
| 80 | + "cSpell.ignoreWords": [ |
| 81 | + "parsedate" |
| 82 | + ] |
| 83 | +} |
0 commit comments