Skip to content

Instantly share code, notes, and snippets.

@Frulko
Created November 15, 2022 15:02
Show Gist options
  • Save Frulko/7fd144dd8c264c66261972dde477a7a1 to your computer and use it in GitHub Desktop.
Save Frulko/7fd144dd8c264c66261972dde477a7a1 to your computer and use it in GitHub Desktop.
vscode - settings
{
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"files.associations": {
// "*.twig": "html",
// "*.html": "twig",
"*.module": "php"
},
"workbench.colorTheme": "Dracula",
"scss.validate": false,
"editor.fontFamily": "Operator Mono, MonoLisa, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"twig": "html"
},
"workbench.iconTheme": "vscode-icons",
"git.autofetch": true,
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"todo-tree.tree.showScanModeButton": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.welcomePage.hiddenCategories": [
"Setup",
"Beginner"
],
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"jest.autoEnable": false,
"jest.runAllTestsFirst": false,
"jest.showCoverageOnLoad": false,
"jest.disabledWorkspaceFolders": [
],
"php.suggest.basic": false,
"php.validate.enable": false,
"intelephense.files.maxSize": 10000000,
"intelephense.maxMemory": 256,
"cmake.generator": "Unix Makefiles",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"files.exclude": {
"**/languages": true,
// "**/plugins": true,
// "**/wp-admin": true,
// "**/wp-includes": true
},
// See the VIM extension docs for more details
"vim.leader": "<space>",
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.visualModeKeyBindingsNonRecursive": [
{
// By default, "p" in visual mode will copy whatever text was replaced. To prevent this, after pasting, select the newly replaced text and copy it.
"before": [
"p"
],
"after": [
"p",
"g",
"v",
"y"
]
},
// Bind > and < in visual mode to indent/outdent lines (repeatable)
{
"before": [
">"
],
"commands": [
"editor.action.indentLines"
]
},
{
"before": [
"<"
],
"commands": [
"editor.action.outdentLines"
]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
// Turn off VIM's search highlighting
{
"before": [
"<leader>",
"s",
"h"
],
"commands": [
":nohl"
]
},
],
"editor.minimap.enabled": false,
"json.maxItemsComputed": 1000,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// "terminal.integrated.env.osx": {
// "FIG_NEW_SESSION": "1"
// },
"php.executablePath": "/usr/local/opt/php@7.4/bin/php",
"terminal.integrated.fontFamily": "monospace",
"editor.accessibilitySupport": "off",
"editor.fontSize": 12,
"vsnotes.defaultNotePath": "/Users/mowmow/Workspace/Notes",
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"intelephense.environment.phpVersion": "7.4.28",
"vsicons.dontShowNewVersionMessage": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment