Skip to content

Instantly share code, notes, and snippets.

@xiaklizrum
Last active December 14, 2021 00:25
Show Gist options
  • Save xiaklizrum/3725a54a7c92efe88a1272bea4c40a9c to your computer and use it in GitHub Desktop.
Save xiaklizrum/3725a54a7c92efe88a1272bea4c40a9c to your computer and use it in GitHub Desktop.
vscode settings
{
"editor.formatOnSave": false,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1,
"intelephense.environment.documentRoot": "public/;vendor/;",
"intelephense.files.associations": [
"*.php",
"*.phtml"
],
"intelephense.environment.shortOpenTag": false,
"editor.rulers": [120],
"[php]": {
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?"
},
"intelephense.diagnostics.enable": true,
"intelephense.environment.phpVersion": "5.6",
}
{
//title
"window.titleBarStyle": "native",
"explorer.compactFolders": false,
"editor.formatOnSave": true,
"editor.scrollBeyondLastLine": false,
"editor.minimap.enabled": false,
"editor.wordWrap": "on",
"files.autoSave": "off",
"workbench.editor.enablePreview": false,
"workbench.editor.wrapTabs": true,
"workbench.tree.indent": 20,
//font
"editor.fontSize": 15,
"editor.fontFamily": "Source Code Pro",
//system
"editor.largeFileOptimizations": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": true,
"files.maxMemoryForLargeFilesMB": 102400,
"window.menuBarVisibility": "toggle",
"window.restoreWindows": "all",
"workbench.tips.enabled": false,
"workbench.startupEditor": "none",
"workbench.statusBar.visible": true,
"update.showReleaseNotes": false,
"window.zoomLevel": 0,
//security
"security.workspace.trust.enabled": false,
"security.workspace.trust.banner": "never",
//php
"php.suggest.basic": false,
"intelephense.environment.documentRoot": "public/;vendor/;",
"intelephense.environment.phpVersion": "7.4",
"intelephense.files.associations": [
"*.php",
"*.phtml"
],
"intelephense.diagnostics.enable": false,
//javascript
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.rulers": [
80
],
"workbench.colorTheme": "GitHub Light Default",
// python
"python.formatting.provider": "black",
//terminal
"terminal.external.linuxExec": "alacritty",
"terminal.explorerKind": "external",
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.fontFamily": "'Terminus (TTF)'",
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontWeight": "500",
"terminal.integrated.fontWeightBold": "500",
"terminal.integrated.lineHeight": 1,
"terminal.integrated.persistentSessionReviveProcess": "never",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment