├── README.md ├── lang.md ├── settings.md ├── styles.md └── theme.md /README.md: -------------------------------------------------------------------------------- 1 | ![VSCode Wallpaper](https://wallpapercave.com/wp/wp7241559.png) 2 | 3 | ## Folders 4 | 5 | - Extensions 6 | - Settings 7 | - Styles 8 | -------------------------------------------------------------------------------- /lang.md: -------------------------------------------------------------------------------- 1 | ## Extensions for HTML, CSS, JavaScript, React, etc. 2 | 3 | - HTML CSS Support 4 | - HTML Snippets 5 | - IntelliSense for CSS class names in HTML 6 | - CSS Peek 7 | - Tailwind CSS IntelliSense 8 | - JavaScript (ES6) code snippets 9 | - Babel JavaScript 10 | - JavaScript Booster 11 | - JavaScript Debugger 12 | - ES7 React/Redux/React-Native/JS snippets 13 | - Path Intellisense 14 | - Reactjs code snippets 15 | - ESLint & Prettier 16 | -------------------------------------------------------------------------------- /settings.md: -------------------------------------------------------------------------------- 1 | ## Settings.json file 2 | 3 | { 4 | // window 5 | "window.closeWhenEmpty": true, 6 | "window.dialogStyle": "custom", 7 | "window.menuBarVisibility": "toggle", 8 | "window.titleSeparator": " • ", 9 | 10 | // workbench 11 | "workbench.activityBar.visible": false, 12 | "workbench.colorTheme": "LubnaDev", 13 | "workbench.commandPalette.history": 3, 14 | "workbench.commandPalette.preserveInput": true, 15 | "workbench.editor.closeOnFileDelete": true, 16 | "workbench.iconTheme": "material-icon-theme", 17 | "workbench.list.openMode": "singleClick", 18 | "workbench.list.smoothScrolling": true, 19 | "workbench.statusBar.visible": false, 20 | 21 | // editor 22 | "editor.acceptSuggestionOnEnter": "smart", 23 | "editor.accessibilityPageSize": 15, 24 | "editor.copyWithSyntaxHighlighting": false, 25 | "editor.cursorBlinking": "expand", 26 | "editor.defaultFormatter": "esbenp.prettier-vscode", 27 | "editor.fontFamily": "Roboto Mono, Vazir FD-Wol", 28 | "editor.fontSize": 16, 29 | "editor.formatOnSave": true, 30 | "editor.lineHeight": 25, 31 | "editor.minimap.enabled": false, 32 | "editor.smoothScrolling": true, 33 | "editor.tabSize": 2, 34 | 35 | // prettier 36 | "breadcrumbs.enabled": false, 37 | "prettier.arrowParens": "avoid", 38 | "prettier.semi": false, 39 | "prettier.singleQuote": true, 40 | "prettier.trailingComma": "none" 41 | } 42 | -------------------------------------------------------------------------------- /styles.md: -------------------------------------------------------------------------------- 1 | ## Styles 2 | 3 | | # | Theme | Font | Icon | 4 | | --- | -------------- | -------------- | ------------------- | 5 | | 1 | Material Theme | Operator Mono | Material Icon Theme | 6 | | 2 | One Dark Pro | JetBrains Mono | VSCode Icons Mac | 7 | | 3 | GitHub Theme | Roboto Mono | Material Icon Theme | 8 | | 4 | Monokai Pro | Hack | Monokai Pro Icons | 9 | | 5 | Tokyo Night | Meslo LG S | Material Icon Theme | 10 | -------------------------------------------------------------------------------- /theme.md: -------------------------------------------------------------------------------- 1 | ## Theme 2 | 3 | - [Material Theme](https://marketplace.visualstudio.com/items?itemName=zhuangtongfa.Material-theme) 4 | - [GitHub Theme](https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme) 5 | - [Dracula Official](https://marketplace.visualstudio.com/items?itemName=dracula-theme.theme-dracula) 6 | - [Monokai Pro](https://marketplace.visualstudio.com/items?itemName=monokai.theme-monokai-pro-vscode) 7 | - [Night Owl](https://marketplace.visualstudio.com/items?itemName=sdras.night-owl) 8 | - [Ayu Theme](https://marketplace.visualstudio.com/items?itemName=teabyii.ayu) 9 | - [Palenight Theme](https://marketplace.visualstudio.com/items?itemName=whizkydee.material-palenight-theme) 10 | - [Nord Theme](https://marketplace.visualstudio.com/items?itemName=arcticicestudio.nord-visual-studio-code) 11 | - [Eva Theme](https://marketplace.visualstudio.com/items?itemName=fisheva.eva-theme) 12 | - [Horizon Theme](https://marketplace.visualstudio.com/items?itemName=jolaleye.horizon-theme-vscode) 13 | - [Panda Theme](https://marketplace.visualstudio.com/items?itemName=tinkertrain.theme-panda) 14 | - [Tokyo Night](https://marketplace.visualstudio.com/items?itemName=enkia.tokyo-night) 15 | --------------------------------------------------------------------------------