Skip to content
This repository was archived by the owner on Aug 17, 2025. It is now read-only.

Commit e99bb68

Browse files
committed
Revert "Remove vscode config"
This reverts commit 6ac61d9.
1 parent 4784944 commit e99bb68

File tree

3 files changed

+116
-0
lines changed

3 files changed

+116
-0
lines changed

.vscode/settings.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.activeBackground": "#ab307e",
4+
"activityBar.background": "#ab307e",
5+
"activityBar.foreground": "#e7e7e7",
6+
"activityBar.inactiveForeground": "#e7e7e799",
7+
"activityBarBadge.background": "#25320e",
8+
"activityBarBadge.foreground": "#e7e7e7",
9+
"commandCenter.border": "#e7e7e799",
10+
"sash.hoverBorder": "#ab307e",
11+
"statusBar.background": "#832561",
12+
"statusBar.foreground": "#e7e7e7",
13+
"statusBarItem.hoverBackground": "#ab307e",
14+
"statusBarItem.remoteBackground": "#832561",
15+
"statusBarItem.remoteForeground": "#e7e7e7",
16+
"titleBar.activeBackground": "#832561",
17+
"titleBar.activeForeground": "#e7e7e7",
18+
"titleBar.inactiveBackground": "#83256199",
19+
"titleBar.inactiveForeground": "#e7e7e799"
20+
},
21+
"peacock.color": "#832561"
22+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Place your key bindings in this file to override the defaultsauto[]
2+
[
3+
{
4+
"command": "-vscode-neovim.send",
5+
"key": "ctrl+i"
6+
},
7+
{
8+
"command": "workbench.action.quickOpen",
9+
"key": "ctrl+i",
10+
},
11+
]
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
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

Comments
 (0)