An open API service indexing awesome lists of open source software.

https://github.com/matchati/my-cool-config


https://github.com/matchati/my-cool-config

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# My Cool Custom Config 😎

### VS Code Settings

```json
{
"editor.lineNumbers": "relative",
"editor.renderLineHighlight": "none",
"editor.matchBrackets": "never",
"workbench.colorCustomizations": {},
"editor.fontFamily": "JetBrainsMono Nerd Font, Source Code Pro",
"editor.language.colorizedBracketPairs": [[]],
"workbench.startupEditor": "none",
"terminal.integrated.persistentSessionReviveProcess": "never",
"editor.fontLigatures": true,
"editor.fontWeight": "400",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"html.format.wrapLineLength": 0,
"workbench.iconTheme": "bearded-icons",
"terminal.integrated.fontSize": 12,
"eslint.lintTask.enable": true,
"window.titleBarStyle": "custom",
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"editor.minimap.enabled": false,
"workbench.editor.showTabs": "single",
"workbench.layoutControl.enabled": false,
"workbench.tree.renderIndentGuides": "none",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"files.associations": {
"*.mdx": "markdown"
},
"editor.fontSize": 12,
"[python]": {
"editor.formatOnType": true,
"editor.formatOnSave": true,
// "editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"prettier.jsxSingleQuote": true,
"[postcss]": {
"gitlens.codeLens.scopes": ["document"]
},
"editor.lineHeight": 2.5,
"vim.commandLineModeKeyBindings": [],
"window.zoomLevel": 1,

"javascript.preferences.renameMatchingJsxTags": true,
"typescript.preferences.renameMatchingJsxTags": true,
"terminal.integrated.defaultProfile.windows": "PowerShell",
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"terminal.integrated.smoothScrolling": true,
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"window.menuBarVisibility": "compact",
"window.commandCenter": false,
"git.autofetch": true,
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
},
"explorer.compactFolders": false,
"dart.flutterSdkPath": "C:\\flutter",
"cmake.showOptionsMovedNotification": false,
"dart.openDevTools": "flutter",
"editor.stickyScroll.scrollWithEditor": false,
"editor.stickyScroll.maxLineCount": 1,
"editor.cursorSmoothCaretAnimation": "on",
"[php]": {
"editor.defaultFormatter": "DEVSENSE.phptools-vscode"
},
"git.confirmSync": false,
"code-runner.runInTerminal": true,
"breadcrumbs.enabled": false,
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"workbench.colorTheme": "Bandori Roselia Orbital Eden",
"mssql.enableRichExperiences": true,
"workbench.activityBar.location": "hidden"
}
```