RSS Amplifier

Kevin Lewis · Feb 15, 2025

Things I Use

0
Sign in to vote or save

lws.io

{

/**

* Theme

**/

"editor.fontFamily": "Geist Mono Light",

"workbench.colorTheme": "Vesper",

"workbench.iconTheme": "chalice-icon-theme",

"editor.fontSize": 12,

"editor.lineHeight": 0,

"editor.suggestFontSize": 15,

"editor.suggestLineHeight": 28,

"terminal.integrated.fontSize": 12,

"terminal.integrated.lineHeight": 1.5,

"editor.fontLigatures": true,

"editor.wordWrap": "on",

"window.titleSeparator": " → ",

"editor.cursorSmoothCaretAnimation": "on",

/**

* Layout

**/

"workbench.sideBar.location": "right",

"workbench.panel.defaultLocation": "right",

"editor.minimap.enabled": false,

"workbench.editor.showTabs": "single",

"workbench.navigationControl.enabled": false,

"window.commandCenter": false,

"workbench.layoutControl.enabled": false,

"workbench.statusBar.visible": false,

"workbench.activityBar.location": "top",

/**

* Explorer

**/

"explorer.sortOrder": "mixed",

/**

* Silence The Noise

**/

"breadcrumbs.enabled": false,

"editor.hover.enabled": false,

"extensions.ignoreRecommendations": true,

"workbench.startupEditor": "none",

"workbench.tips.enabled": false,

"editor.colorDecorators": false,

"git.decorations.enabled": false,

"editor.selectionHighlight": false,

"editor.overviewRulerBorder": false,

"editor.renderLineHighlight": "all",

"editor.occurrencesHighlight": "off",

"problems.decorations.enabled": true,

"editor.renderControlCharacters": false,

"security.workspace.trust.untrustedFiles": "open",

/**

* Editor

**/

"editor.detectIndentation": true,

"editor.lightbulb.enabled": "on",

"editor.autoIndent": "full",

"editor.bracketPairColorization.enabled": true,

"editor.lineNumbers": "on",

"editor.guides.indentation": true,

"editor.stickyScroll.enabled": true,

/**

* Search

**/

"search.useIgnoreFiles": false,

"search.exclude": {

"**/node_modules": true,

"**/dist": true,

"**/package-lock.json": true,

"**/.db": true,

"**/build": true,

"**/.output": true,

"**/.build": true,

"**/.nuxt": true

},

/**

* Source Control

**/

"diffEditor.ignoreTrimWhitespace": false,

"git.enableSmartCommit": true,

/**

* Code Formatting

**/

"prettier.arrowParens": "avoid",

"prettier.tabWidth": 2,

"editor.tabSize": 2,

"prettier.semi": false,

"prettier.singleQuote": true,

"prettier.trailingComma": "es5",

"prettier.printWidth": 120,

"editor.formatOnSave": true,

"editor.formatOnPaste": true,

"prettier.bracketSpacing": true,

"prettier.useTabs": true,

"editor.defaultFormatter": "esbenp.prettier-vscode",

"files.insertFinalNewline": false,

"files.trimFinalNewlines": true,

/**

* Spelling

**/

"cSpell.userWords": ["GitHub", "Hackathons", "Directus", "Deepgram"],

/**

* Copilot

**/

"github.copilot.enable": {

"*": true,

"plaintext": false,

"markdown": false,

"scminput": false

},

"github.copilot.chat.followUps": "always",

"github.copilot.chat.terminalChatLocation": "quickChat",

"github.copilot.editor.enableAutoCompletions": true,

"github.copilot.nextEditSuggestions.enabled": true,

"github.copilot.chat.edits.codesearch.enabled": true

}

Read the original on lws.io

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.