mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 12:06:41 +00:00
chore(cursor): update settings, keybindings, and remove extensions causing issues
Specifically, the Linter extension was causing the whole extension stack in VSCode to crash and restart every 5-10 seconds when working on large Rails projects. End result was VSCode becoming completely unresponsible for 5-ish seconds as all extensions reloaded.
This commit is contained in:
@@ -28,10 +28,16 @@
|
||||
"editor.minimap.enabled": true,
|
||||
//
|
||||
// ===========================================================================
|
||||
// Diffs
|
||||
// ===========================================================================
|
||||
//
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
//
|
||||
// ===========================================================================
|
||||
// Git
|
||||
// ===========================================================================
|
||||
//
|
||||
"git.blame.editorDecoration.enabled": true,
|
||||
"git.blame.editorDecoration.enabled": false,
|
||||
//
|
||||
// ===========================================================================
|
||||
// Files
|
||||
@@ -153,6 +159,7 @@
|
||||
// Extension URL:
|
||||
// - https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github
|
||||
// - https://marketplace.visualstudio.com/items?itemName=GitHub.remotehub
|
||||
//
|
||||
"githubRepositories.autoFetch.enabled": false,
|
||||
//
|
||||
// ===========================================================================
|
||||
@@ -220,6 +227,12 @@
|
||||
"editor.insertSpaces": true,
|
||||
"editor.tabSize": 2
|
||||
},
|
||||
// Ruby Test Explorer
|
||||
"rubyTestExplorer.logpanel": false,
|
||||
// Use mise to execute ruby test explorer bundler commands to ensure correct
|
||||
// version of Ruby is used.
|
||||
"rubyTestExplorer.minitestCommand": "mise x -- bundle exec rake",
|
||||
"rubyTestExplorer.rspecCommand": "mise x -- bundle exec rspec",
|
||||
//
|
||||
// ===========================================================================
|
||||
// Shellscript
|
||||
@@ -308,6 +321,18 @@
|
||||
// back into the editor. Without the delay the focus commands runs before
|
||||
// Test Results appear and steal focus.
|
||||
//
|
||||
"cycleSpacing": [
|
||||
// This is a basic emulation Emacs' built-in cycle-spacing command. It
|
||||
// doesn't actually cycle spacing, but it performs the first step which is
|
||||
// to replace all spacing surrounding the cursor with a single space.
|
||||
"emacs-mcx.deleteHorizontalSpace",
|
||||
{
|
||||
"command": "type",
|
||||
"args": {
|
||||
"text": " "
|
||||
}
|
||||
}
|
||||
],
|
||||
"runTestCurrentFile": [
|
||||
"testing.runCurrentFile",
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user