SUP3R-US3R

VSCode

Dec 23rd, 2019
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.33 KB | None | 0 0
  1. Extensões:
  2.  
  3. Beautify
  4. Better Comments
  5. Code Runner
  6. HTML Snippets
  7. ident-rainbow
  8. Live HTML & JS Previewer v2
  9. Live Server
  10. Material Icon Theme
  11. Node.js Modules Intellisense
  12. PostgreSQL
  13. Punk Dark Theme
  14. Tailwind CSS IntelliSense
  15. Visual Studio IntelliCode
  16.  
  17.  
  18.  
  19. Settings json:
  20.  
  21. {
  22.     // Settings for vscode appearance
  23.     "workbench.startupEditor": "newUntitledFile",
  24.     "workbench.iconTheme": "material-icon-theme",
  25.     "window.zoomLevel": 0,
  26.     // "editor.fontFamily": "Fira Code",
  27.     "editor.fontSize": 14,
  28.     "editor.lineHeight": 23,
  29.     "editor.fontFamily": "Menlo, 'DejaVu Sans Mono', Consolas, 'Lucida Console', monospace",
  30.     "editor.minimap.enabled": false,
  31.     "editor.renderLineHighlight": "none",
  32.     "workbench.colorTheme": "Punk Dark Theme",
  33.    
  34.     // Setting to open each file in an individual tab.
  35.     "workbench.editor.enablePreview": false,
  36.    
  37.     // Postgresql config
  38.     "sqltools.connections": [
  39.         {
  40.             "connectionTimeout": 30,
  41.             "database": "uolqwksy",
  42.             "dialect": "PostgreSQL",
  43.             "name": "anomalias",
  44.             "password": "w7mjvpIuoQzRW7652GjIrSmWWh1sJ68Z",
  45.             "port": 5432,
  46.             "server": "tuffi.db.elephantsql.com",
  47.             "username": "uolqwksy"
  48.         }
  49.     ],
  50.  
  51.     // Editor suggestion
  52.     "editor.suggestSelection": "first",
  53.    
  54.     // VSCode autocomplete
  55.     "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  56.    
  57.     // Settings LiveServer
  58.     "liveServer.settings.donotShowInfoMsg": true,
  59.    
  60.     // Vertical line for coding breaking
  61.     // "editor.rulers": [80, 120]
  62.  
  63.     // Scans builtin modules as well
  64.     "node-module-intellisense.scanBuiltinModules": true,
  65.  
  66.     // Scans devDependencies as well
  67.     "node-module-intellisense.scanDevDependencies": true,
  68.  
  69.     // Scans file modules as well
  70.     "node-module-intellisense.scanFileModules": true,
  71.  
  72.     /**
  73.     * Scans alternative module paths (eg. Search on ${workspcaceRoot}/lib).
  74.     * Useful when using packages like (https://www.npmjs.com/package/app-module-path) to manage require paths folder.
  75.     **/
  76.     "node-module-intellisense.modulePaths": [],
  77.  
  78.     // Tailwindcss autocomplete
  79.     "tailwindCSS.emmetCompletions": true,
  80.     "liveServer.settings.donotVerifyTags": true,
  81.     "explorer.compactFolders": false,
  82. }
Advertisement
Add Comment
Please, Sign In to add comment