Skip to content

Commit 015308c

Browse files
committed
vscode
1 parent 15bf351 commit 015308c

File tree

2 files changed

+18
-29
lines changed

2 files changed

+18
-29
lines changed

config/vscode/keybindings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
{
6363
"key": "alt+m",
6464
"command": "workbench.action.terminal.sendSequence",
65-
"args": { "text": "clear && ruby path_to_enlightenment.rb\n" },
65+
"args": {"text": "clear && ruby path_to_enlightenment.rb\n"},
6666
"when": "editorLangId == 'ruby'"
6767
},
6868
{

config/vscode/settings.json

Lines changed: 17 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@
9191
"typescript.updateImportsOnFileMove.enabled": "always",
9292
"editor.tabCompletion": "on",
9393
"editor.suggest.localityBonus": true,
94-
"python.diagnostics.sourceMapsEnabled": false,
9594
"[javascriptreact]": {
9695
"editor.defaultFormatter": "esbenp.prettier-vscode"
9796
},
@@ -103,7 +102,6 @@
103102
},
104103
"workbench.startupEditor": "newUntitledFile",
105104
"[python]": {
106-
"editor.defaultFormatter": "ms-python.black-formatter",
107105
"editor.formatOnSave": true,
108106
"editor.formatOnType": true
109107
},
@@ -118,7 +116,6 @@
118116
},
119117
"editor.lineHeight": 33,
120118
"wallaby.startAutomatically": false,
121-
"quokka.colorizeOutput": true,
122119
"quokka.colors": {
123120
"covered": "#62b455",
124121
"errorPath": "#ffa0a0",
@@ -140,10 +137,8 @@
140137
"editor.defaultFormatter": "esbenp.prettier-vscode"
141138
},
142139
"git.autofetch": true,
143-
"workbench.colorTheme": "Catppuccin Mocha",
144140
"git.enableSmartCommit": true,
145141
"git.confirmSync": false,
146-
"editor.formatOnSave": true,
147142
"emmet.triggerExpansionOnTab": true,
148143
"emmet.includeLanguages": {
149144
"javascript": "javascriptreact",
@@ -259,20 +254,6 @@
259254
"extensions.experimental.affinity": {
260255
"asvetliakov.vscode-neovim": 1
261256
},
262-
"vscode-neovim.neovimExecutablePaths.darwin": "/opt/homebrew/bin/nvim",
263-
"vscode-neovim.NVIM_APPNAME": "vscode-nvim",
264-
"vscode-neovim.ctrlKeysForInsertMode": [
265-
"a",
266-
"c",
267-
"h",
268-
"j",
269-
"m",
270-
"o",
271-
"r",
272-
"t",
273-
"u",
274-
"w"
275-
],
276257
"[dart][elixir]": {
277258
"editor.wordBasedSuggestions": "off"
278259
},
@@ -285,19 +266,11 @@
285266
"window.titleBarStyle": "custom",
286267
"window.zoomLevel": -2,
287268
"zig.path": "/Users/poom/Library/Application Support/Code/User/globalStorage/ziglang.vscode-zig/zig_install/zig",
288-
"zig.initialSetupDone": true,
289-
"vscode-neovim.compositeKeys": {},
290-
"github.copilot.editor.enableCodeActions": false,
291269
"github.copilot.renameSuggestions.triggerAutomatically": false,
292-
"supermaven.otherWarning": false,
293270
"vite.autoStart": false,
294271
"vite.open": false,
295-
"continue.enableTabAutocomplete": false,
296-
"continue.pauseTabAutocompleteOnBattery": true,
297-
"editor.experimentalInlineEdit.fontFamily": "ZedMonoNF-Extended",
298272
"editor.inlayHints.fontFamily": "ZedMonoNF-Extended",
299273
"apc.monospace.font.family": "ZedMonoNF-Extended",
300-
"vue.server.hybridMode": "typeScriptPluginOnly",
301274
"[vue]": {
302275
"editor.defaultFormatter": "esbenp.prettier-vscode"
303276
},
@@ -306,7 +279,23 @@
306279
"console-ninja": {
307280
"command": "npx",
308281
"args": ["-y", "-c", "node ~/.console-ninja/mcp/"]
282+
},
283+
"wallaby": {
284+
"command": "npx",
285+
"args": ["-y", "-c", "node ~/.wallaby/mcp/"]
309286
}
310287
}
311-
}
288+
},
289+
"workbench.colorTheme": "One Dark Pro",
290+
"workbench.activityBar.location": "top",
291+
"github.copilot.nextEditSuggestions.enabled": true,
292+
"github.copilot.chat.codesearch.enabled": true,
293+
"github.copilot.chat.agent.thinkingTool": true,
294+
"terminal.integrated.gpuAcceleration": "off",
295+
"window.systemColorTheme": "dark",
296+
"window.autoDetectColorScheme": false,
297+
"editor.formatOnSave": true,
298+
"vim.vimrc.enable": true,
299+
"vim.vimrc.path": "$HOME/.vimrc.cursor",
300+
"vim.useSystemClipboard": true
312301
}

0 commit comments

Comments
 (0)