this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: :wrench: Added VS Code settings

arb85 25de8c87 dd1c4fd3

+148
+148
.vscode/settings.json
··· 1 + { 2 + // Zen mode 3 + "zenMode.fullScreen": false, 4 + "zenMode.centerLayout": false, 5 + 6 + // Theming 7 + "editor.fontLigatures": true, 8 + "window.autoDetectColorScheme": true, 9 + "workbench.layoutControl.type": "menu", 10 + "workbench.colorTheme": "Atom One Dark", 11 + 12 + // Scrollbars 13 + "editor.hideCursorInOverviewRuler": true, // hides cursor mark in the overview ruler 14 + "editor.overviewRulerBorder": false, // removes border from overview ruler (located on the right, same position as the scrollbar) 15 + "editor.scrollbar.horizontal": "hidden", 16 + "editor.scrollbar.vertical": "hidden", 17 + "color-highlight.markRuler": false, // removes the activity bar (the 4 icons at the left of the screen), so now you will have to open the explorer, git, debugger and extension with shortcuts or through the Command Palette 18 + "workbench.statusBar.visible": false, // false removes the status bar 19 + "editor.minimap.enabled": false, 20 + "editor.glyphMargin": false, // removes the space used mainly for debugging indicators 21 + "editor.folding": true, // if false removes the folding feature 22 + "editor.lineNumbers": "off", 23 + "workbench.sideBar.location": "right", 24 + // "workbench.editor.showTabs": "single", 25 + "workbench.editor.pinnedTabSizing": "compact", 26 + "workbench.editor.tabSizing": "shrink", 27 + "breadcrumbs.enabled": false, 28 + "workbench.startupEditor": "newUntitledFile", 29 + "editor.lightbulb.enabled": "off", 30 + "editor.renderLineHighlight": "line", 31 + "editor.renderControlCharacters": false, 32 + "editor.gotoLocation.multipleReferences": "goto", 33 + "editor.gotoLocation.multipleDefinitions": "goto", 34 + "editor.gotoLocation.multipleDeclarations": "goto", 35 + "workbench.editor.enablePreviewFromQuickOpen": false, 36 + "editor.gotoLocation.multipleImplementations": "goto", 37 + "editor.gotoLocation.multipleTypeDefinitions": "goto", 38 + 39 + // Theme-specific UI 40 + "diffEditor.renderSideBySide": false, 41 + "editor.copyWithSyntaxHighlighting": false, 42 + "editor.snippetSuggestions": "bottom", 43 + "editor.tabSize": 2, 44 + "editor.detectIndentation": true, 45 + "editor.multiCursorModifier": "ctrlCmd", 46 + "files.insertFinalNewline": true, 47 + "workbench.editor.enablePreview": false, 48 + "workbench.editor.highlightModifiedTabs": true, 49 + "editor.renderWhitespace": "none", // removes indent guides 50 + "editor.occurrencesHighlight": "off", // removes highlights occurrences (still works when you select a word) 51 + "workbench.editor.showIcons": false, // removes icon from opened files in tabs 52 + "workbench.editor.tabCloseButton": "off", // removes cross icon from tabs 53 + "workbench.colorCustomizations": { 54 + // object that allows you to customize your color theme: https://code.visualstudio.com/docs/getstarted/theme-color-reference 55 + }, 56 + 57 + // Search 58 + "search.smartCase": true, 59 + "search.useIgnoreFiles": false, 60 + "search.exclude": { 61 + "**/vendor/*": true, 62 + "**/public/*": true, 63 + "**/node_modules": true, 64 + "**/dist": true, 65 + "**/package-lock.json": true, 66 + "**/yarn.lock": true 67 + }, 68 + 69 + // Code 70 + // Include "-" in word selection. 71 + "editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?", 72 + "editor.cursorBlinking": "smooth", 73 + "editor.cursorSmoothCaretAnimation": "on", 74 + "editor.wordWrap": "on", 75 + "editor.tabCompletion": "on", 76 + "explorer.openEditors.visible": 1, // 0 removes the open editors section at the top of the sidebar, you can see the opened files with ⌘ + ⌥ + Tab 77 + 78 + // Files to display 79 + "files.enableTrash": false, 80 + "files.exclude": { 81 + ".cache-loader/": true, 82 + ".gitattributes": true, 83 + ".gitkeep": true, 84 + ".travis.yml": true, 85 + ".vercel": true, 86 + ".vscode/": true, 87 + "coverage": true, 88 + "acf-json": true, 89 + "backend/vendor": true, 90 + "CODE_OF_CONDUCT.md": true, 91 + "config": false, 92 + "LICENSE.md": true, 93 + "package-lock.json": true, 94 + "phpcs.xml": true, 95 + 96 + // For more minimal option 97 + ".npmrc": true, 98 + ".editorconfig": true, 99 + ".prettierrc": true, 100 + "prettier.config.js": true, 101 + "**/README.md": true, 102 + "pnpm-lock.yaml": true, 103 + "node_modules/": true, 104 + ".gitignore": true, 105 + ".output/node_modules/": false, 106 + "eslint.config.mjs": true, 107 + "robots.txt": true, 108 + 109 + // And even more ultra minimal 110 + ".nuxt": true, 111 + ".output": true, 112 + "package.json": false, 113 + "tsconfig.json": true 114 + }, 115 + "window.title": "${rootName} | ${activeEditorShort} ${dirty}", 116 + // "git.decorations.enabled": false, 117 + // "scm.diffDecorationsGutterVisibility": "hover", 118 + // "scm.diffDecorations": "none", 119 + "files.watcherExclude": { 120 + "**/.output/**": true, 121 + "**/.yarn/**": true, 122 + "**/node_modules/**": true, 123 + "backend/vendor/**": true 124 + }, 125 + "editor.semanticHighlighting.enabled": true, 126 + "editor.linkedEditing": true, 127 + "editor.bracketPairColorization.enabled": true, 128 + 129 + // Suggestions 130 + "editor.inlineSuggest.enabled": true, 131 + "editor.acceptSuggestionOnEnter": "smart", 132 + "editor.quickSuggestions": { 133 + "strings": true 134 + }, 135 + "editor.suggestSelection": "first", 136 + "editor.suggest.showWords": false, 137 + "emmet.showAbbreviationSuggestions": false, 138 + "javascript.preferences.importModuleSpecifier": "non-relative", 139 + "typescript.preferences.importModuleSpecifier": "non-relative", 140 + "typescript.suggest.completeFunctionCalls": true, 141 + "editor.guides.indentation": false, 142 + "editor.unicodeHighlight.ambiguousCharacters": false, 143 + "editor.unicodeHighlight.invisibleCharacters": false, 144 + "workbench.activityBar.location": "default", 145 + "zenMode.showTabs": "single", 146 + "workbench.editor.tabActionCloseVisibility": false, 147 + "editor.formatOnSave": true 148 + }