Created
November 8, 2024 17:04
-
-
Save cognivore/2d1e4fd459e779b86b2dcef4fec7491d to your computer and use it in GitHub Desktop.
My VSCode / Cursor config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
"editor.detectIndentation": true, | |
"files.trimTrailingWhitespace": true, | |
"telemetry.telemetryLevel": "off", | |
"vim.statusBarColors.searchinprogressmode": "", | |
"vim.handleKeys": { | |
"<C-p>": false, | |
"<C-a>": false, | |
"<C-f>": false, | |
"<C-k>": false, | |
"<C-l>": false, | |
"<C-S-i>": false, | |
"<C-Enter>": false | |
}, | |
"vim.digraphs": {}, | |
// "editor.fontFamily": "Monoid Nerd Font Mono Regular", | |
// D2CodingLigature Nerd Font Propo | |
"editor.fontFamily": "D2CodingLigature Nerd Font", | |
"editor.fontLigatures": true, | |
// Ligature test: != !== === => <= >= <$> -> <- =>> >>= << >> <> <~ ~> | |
// "editor.fontFamily": "Ubuntu Mono", | |
"editor.fontSize": 16, | |
"terminal.integrated.fontFamily": "Ubuntu Mono", | |
"terminal.integrated.fontSize": 16, | |
"editor.renderWhitespace": "none", | |
"editor.renderControlCharacters": false, | |
"javascript.validate.enable": false, | |
"notebook.kernelProviderAssociations": [], | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"editor.formatOnType": true, | |
"editor.formatOnSaveMode": "modifications", | |
"window.menuBarVisibility": "toggle", | |
"workbench.colorTheme": "mIRC 2003", | |
"synthwave84.brightness": 1.1, | |
"[elixir]": { | |
"editor.defaultFormatter": "JakeBecker.elixir-ls" | |
}, | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"bracketPairColorizer.depreciation-notice": false, | |
"haskell.manageHLS": "PATH", | |
"editor.inlineSuggest.enabled": true, | |
"files.watcherExclude": { | |
"**/.bloop": true, | |
"**/.metals": true, | |
"**/.ammonite": true | |
}, | |
"window.zoomLevel": -2, | |
"github.copilot.editor.enableAutoCompletions": true, | |
"editor.minimap.enabled": false, | |
"workbench.activityBar.location": "hidden", | |
"workbench.editor.showTabs": "none", | |
"editor.inlayHints.enabled": "offUnlessPressed", | |
"nix.enableLanguageServer": true, | |
"nix.formatterPath": "nixfmt", | |
"nix.serverPath": "nixd", | |
"nix.serverSettings": {"nixd": { | |
"formatting": { | |
"command": [ | |
"nixfmt" | |
] | |
} | |
}}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment