VSCode Settings
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
alefragnani.project-manager | |
amiralizadeh9480.laravel-extra-intellisense | |
antfu.icons-carbon | |
austenc.laravel-blade-spacer | |
bmewburn.vscode-intelephense-client | |
bradlc.vscode-tailwindcss | |
calebporzio.better-keybindings | |
calebporzio.better-phpunit | |
ceciljacob.code-plus-theme | |
cjhowe7.laravel-blade | |
codingyu.laravel-goto-view | |
donjayamanne.githistory | |
esbenp.prettier-vscode | |
evan-buss.font-switcher | |
formulahendry.auto-close-tag | |
formulahendry.auto-rename-tag | |
GitHub.copilot | |
GitHub.github-vscode-theme | |
hbenl.vscode-test-explorer | |
iocave.customize-ui | |
iocave.monkey-patch | |
Jaakko.black | |
josef.rouge-theme | |
junstyle.php-cs-fixer | |
liamhammett.inline-parameters | |
m1guelpf.better-pest | |
MehediDracula.php-namespace-resolver | |
mhutchie.git-graph | |
mikestead.dotenv | |
mrmlnc.vscode-duplicate | |
ms-azuretools.vscode-docker | |
ms-dotnettools.csharp | |
ms-vscode-remote.remote-containers | |
ms-vscode.test-adapter-converter | |
N-l1.blue-cheese | |
neilbrayfield.php-docblocker | |
octref.vetur | |
patbenatar.advanced-new-file | |
PKief.material-icon-theme | |
rangav.vscode-thunder-client | |
rebornix.toggle | |
ryannaddy.laravel-artisan | |
sevavietl.php-files | |
shd101wyy.markdown-preview-enhanced | |
shufo.vscode-blade-formatter | |
sleistner.vscode-fileutils | |
streetsidesoftware.code-spell-checker | |
teabyii.ayu | |
vscodevim.vim | |
WakaTime.vscode-wakatime | |
withfig.fig | |
wix.vscode-import-cost |
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
{ | |
"workbench.tree.indent": 20, | |
"workbench.tree.renderIndentGuides": "none", | |
"terminal.integrated.cursorStyle": "line", | |
"editor.cursorBlinking": "expand", | |
"window.nativeTabs": true, | |
/** | |
* Typography | |
**/ | |
"editor.fontSize": 16, | |
"editor.fontFamily": "Dank Mono, Monolisa, Operator Mono Lig, Menlo, Monaco, 'Courier New', monospace", //"Dank Mono", //"Operator Mono Lig", | |
"editor.lineHeight": 35, | |
"editor.suggestFontSize": 14, | |
"editor.suggestLineHeight": 28, | |
"editor.fontLigatures": true, | |
"terminal.integrated.fontSize": 16, | |
"terminal.integrated.fontFamily": "Dank Mono", | |
"terminal.integrated.lineHeight": 1.4, | |
/** | |
* Better Defaults | |
**/ | |
"editor.copyWithSyntaxHighlighting": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.emptySelectionClipboard": false, | |
"workbench.editor.enablePreview": false, | |
"window.newWindowDimensions": "inherit", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"files.trimTrailingWhitespace": true, | |
"diffEditor.renderSideBySide": false, | |
"editor.snippetSuggestions": "top", | |
"editor.detectIndentation": false, | |
"window.nativeFullScreen": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"workbench.sideBar.location": "right", | |
"workbench.editor.showTabs": false, | |
"editor.renderIndentGuides": false, | |
"editor.minimap.enabled": false, | |
"editor.lineNumbers": "off", | |
/** | |
* Find | |
**/ | |
"search.useIgnoreFiles": false, | |
"search.exclude": { | |
// Hide everything in /vendor, except the "laravel" and "livewire" folder. | |
// "**/vendor/{[^l],?[^ai]}*": true, | |
"**/vendor": true, | |
// Hide everything in /public, except "index.php" "**/public/{[^i],?[^n]}*": true, "**/node_modules": true, | |
"**/dist": true, | |
"**/_ide_helper.php": true, | |
"**/composer.lock": true, | |
"**/package-lock.json": true, | |
"storage": true, | |
".phpunit.result.cache": true | |
}, | |
"scm.diffDecorations": "gutter", | |
"editor.hover.enabled": true, | |
"editor.matchBrackets": "never", | |
"workbench.tips.enabled": false, | |
"editor.colorDecorators": false, | |
"git.decorations.enabled": false, | |
"workbench.startupEditor": "none", | |
"editor.lightbulb.enabled": false, | |
"editor.selectionHighlight": false, | |
"editor.overviewRulerBorder": false, | |
"editor.renderLineHighlight": "none", | |
"editor.occurrencesHighlight": false, | |
"problems.decorations.enabled": false, | |
"editor.renderControlCharacters": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.gotoLocation.multipleReferences": "goto", | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.gotoLocation.multipleDeclarations": "goto", | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.gotoLocation.multipleImplementations": "goto", | |
"editor.gotoLocation.multipleTypeDefinitions": "goto", | |
/** | |
* Full Bleed | |
**/ | |
"window.titleBarStyle": "native", | |
"customizeUI.titleBar": "frameless", | |
// "customizeUI.activityBar": "bottom", | |
"customizeUI.stylesheet": { | |
".editor .title": "background: transparent ! important;", | |
".editor .title .label-container": "visibility: hidden;", | |
// Hide top-right buttons | |
".editor .title .actions-container .action-item a": "visibility: hidden;", | |
// Show top-right "settings goto icon" | |
".editor .title .actions-container .action-item a[title=\"Open Settings (UI)\"]": "visibility: initial;", | |
".editor .title .actions-container .action-item a[title=\"Open Settings (JSON)\"]": "visibility: initial;", | |
// Make it the "right-most" icon. | |
".editor .title .actions-container": "flex- direction: row-reverse;", | |
// Only show the scrollbar on hover. | |
".editor .scrollbar .slider": "visibility: hidden", | |
".editor .scrollbar:hover .slider": "visibility: initial", | |
".cursor": "transition: all 80ms" | |
// ".mtk11": "color: #91bbff; text-shadow: 0 0 10px #2f36ff, 0 0 22px #9d91ff, 0 0 2px black;", | |
// ".mtk12": "color: #67d2ff; text-shadow: 0 0 15px #12baff, 0 0 2px black;" | |
}, | |
/** | |
* Code | |
**/ | |
// Include "-" in word selection. | |
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-", | |
"emmet.includeLanguages": { | |
"blade": "html", | |
"vue-html": "html", | |
"vue": "html" | |
}, | |
"files.associations": { | |
".php_cs": "php", | |
".php_cs.dist": "php" | |
}, | |
/** | |
* PHP | |
**/ | |
"php.suggest.basic": false, | |
/** | |
* PHP CS Fixer | |
**/ | |
"[php]": { | |
"editor.defaultFormatter": "junstyle.php-cs-fixer" | |
}, | |
"php-cs-fixer.onsave": true, | |
"php-cs-fixer.showOutput": false, | |
"php-cs-fixer.autoFixByBracket": false, | |
"php-cs-fixer.rules": "@PSR2", | |
"php-cs-fixer.config": ".php-cs-fixer.php;.php_cs;.php_cs.dist", | |
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar", | |
"php-cs-fixer.lastDownload": 1643598232407, | |
/** | |
* Prettier | |
**/ | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"prettier.requireConfig": true, | |
"prettier.useEditorConfig": false, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
/** | |
* VIM | |
**/ | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": true, | |
"vim.hlsearch": false, | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": ["j", "j"], | |
"after": ["<Esc>"] | |
} | |
], | |
"git.enableSmartCommit": true, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"projectManager.git.baseFolders": ["~/code"], | |
"cSpell.userWords": [ | |
"authenticatable", | |
"dispatchable", | |
"endregion", | |
"fastify", | |
"is", | |
"laravel", | |
"linked", | |
"livewire", | |
"lunardelli", | |
"mutators", | |
"queueable", | |
"tailwindcss", | |
"timedoctor", | |
"to" | |
], | |
"editor.cursorStyle": "line", | |
"editor.insertSpaces": false, | |
"editor.wordWrap": "off", | |
"security.workspace.trust.untrustedFiles": "newWindow", | |
"terminal.integrated.gpuAcceleration": "off", | |
"workbench.editor.showIcons": false, | |
"editor.renderWhitespace": "none", | |
"php.validate.enable": false, | |
"emmet.excludeLanguages": ["markdown", "php"], | |
"editor.inlineSuggest.enabled": true, | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": false, | |
"plaintext": false, | |
"markdown": true, | |
"php": true | |
}, | |
"git.autofetch": true, | |
"editor.accessibilitySupport": "off", | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"terminal.integrated.env.osx": { | |
"FIG_NEW_SESSION": "1" | |
}, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"customizeUI.moveStatusbar": true, | |
"filePathBar.pathStyle": "relative", | |
"filePathBar.statusBarAlignment": "left", | |
"vim.vimrc.enable": true, | |
"projectManager.showProjectNameInStatusBar": false, | |
"cSpell.showStatus": false, | |
"vim.showmodename": false, | |
"breadcrumbs.symbolSortOrder": "type", | |
"workbench.iconTheme": "gruvbox-material-icon-theme", | |
"workbench.productIconTheme": "fluent-icons", | |
"files.autoSave": "afterDelay", | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"breadcrumbs.enabled": false, | |
"gitlens.currentLine.enabled": false, | |
"phpunit.files": "{test,tests}/**/*Test.php", | |
"workbench.colorTheme": "Community Material Theme Ocean", | |
"yaml.schemas": { | |
"file:///Users/r2luna/.vscode/extensions/atlassian.atlascode-2.10.7/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" | |
}, | |
"redhat.telemetry.enabled": true, | |
"atlascode.jira.enabled": true, | |
"atlascode.jira.jqlList": [ | |
{ | |
"id": "40c4b96c-19be-4cc5-bb31-31a3a7da6be0", | |
"enabled": true, | |
"name": "RW - Assigned To Me", | |
"query": "assignee = currentUser() AND project = RW and resolution = Unresolved ", | |
"siteId": "8b56b0b8-9162-41a0-b784-277ba9e7b26c", | |
"monitor": true | |
}, | |
{ | |
"id": "b9f42cef-a316-4b3c-8a1c-98d3e59f748c", | |
"siteId": "8b56b0b8-9162-41a0-b784-277ba9e7b26c", | |
"name": "RW - Open Issues", | |
"query": "project = RW ORDER BY lastViewed DESC", | |
"enabled": true, | |
"monitor": true | |
} | |
], | |
"atlascode.jira.explorer.fetchAllQueryResults": true, | |
"atlascode.jira.lastCreateSiteAndProject": { | |
"siteId": "8b56b0b8-9162-41a0-b784-277ba9e7b26c", | |
"projectKey": "RW" | |
}, | |
"workbench.activityBar.visible": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment