diff options
author | Matthew Lemon <y@yulqen.org> | 2024-11-14 14:31:42 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-11-14 14:31:42 +0000 |
commit | 00e1ac967d62a2f09b820ae2778c9efeb911cbcb (patch) | |
tree | e2cc3b37021ebd997ca0f3f9a4740c084596d49e | |
parent | 1bdba69fb37846d51b0ea0738e9ce6191d5285d9 (diff) |
Adds Cursor editor settings
-rw-r--r-- | cursor_settings.json | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/cursor_settings.json b/cursor_settings.json new file mode 100644 index 0000000..7ad3a68 --- /dev/null +++ b/cursor_settings.json @@ -0,0 +1,47 @@ +{ + "[python]": { + "editor.formatOnType": true + }, + "gopls": { + "ui.semanticTokens": true + }, + "workbench.list.defaultFindMode": "filter", + "editor.inlineSuggest.enabled": true, + "workbench.startupEditor": "none", + "editor.fontFamily": "Hack Nerd Font,Consolas,monaco,Nerd Font Mono, Iosevka Term, Classic Console Neue,monospace,Iosevka Regular,Hack Nerd Font,ComicShannsMono", + "ledger.binary": "/usr/bin/ledger", + "testing.automaticallyOpenPeekView": "never", + "terminal.integrated.cursorStyle": "line", + "terminal.integrated.fontSize": 14, + "terminal.integrated.sendKeybindingsToShell": true, + "terminal.integrated.commandsToSkipShell": [ + "workbench.action.navigateUp" + ], + "projectManager.git.baseFolders": [ + "~/code", + "~/Budget" + ], + "workbench.colorCustomizations": { + "editorIndentGuide.activeBackground1": "#ff9900", + "editorIndentGuide.background1": "#008cff", + "tree.indentGuidesStroke": "#ff9900", + "tree.inactiveIndentGuidesStroke": "#008cff" + }, + "editor.fontWeight": "normal", + "terminal.external.linuxExec": "urxvt", + "git.confirmNoVerifyCommit": false, + "extensions.ignoreRecommendations": true, + "telemetry.telemetryLevel": "off", + "gitlens.showWhatsNewAfterUpgrades": false, + "update.showReleaseNotes": false, + "gitlens.showWelcomeOnInstall": false, + "workbench.welcomePage.walkthroughs.openOnInstall": false, + "gitlens.codeLens.enabled": false, + "editor.fontSize": 13, + "diffEditor.ignoreTrimWhitespace": false, + "editor.inlineSuggest.suppressSuggestions": true, + "cursor.cpp.disabledLanguages": [ + "plaintext", + "markdown" + ] +}
\ No newline at end of file |