Skip to content

Commit 87aac53

Browse files
committed
Updates the readme info
1 parent 42fd3aa commit 87aac53

File tree

2 files changed

+73
-6
lines changed

2 files changed

+73
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,21 @@
22

33
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
44

5+
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
56

7+
#### [v0.2.3](https://github.com/shawn-sandy/codestudio/compare/v0.2.2...v0.2.3)
8+
9+
> 14 July 2019
10+
11+
- Updates package keywords [`097844e`](https://github.com/shawn-sandy/codestudio/commit/097844e92603b4e2dad141c39c27f3c460b4eb41)
12+
- Generated changelog [`40d9a19`](https://github.com/shawn-sandy/codestudio/commit/40d9a19ba56f1e6fae74c2163ce82cf2c9ef5a73)
13+
- Adds newline break missing on some titles [`29ee09e`](https://github.com/shawn-sandy/codestudio/commit/29ee09ef0a5e8073491e27588b8b1c925572359a)
614

715
#### [v0.2.2](https://github.com/shawn-sandy/codestudio/compare/v0.2.1...v0.2.2)
816

917
> 13 July 2019
1018
11-
- Adds highlight matching tags extension [`47d916f`](https://github.com/shawn-sandy/codestudio/commit/47d916fdf6a739abee7e1d97d2ab4822c577da52)
19+
- Adds highligh matching tags extension [`47d916f`](https://github.com/shawn-sandy/codestudio/commit/47d916fdf6a739abee7e1d97d2ab4822c577da52)
1220
- Generated changelog for v 0.2.1 [`2bf112f`](https://github.com/shawn-sandy/codestudio/commit/2bf112fece9ee4003b8d5cff3fe09c2ee0bdb4a1)
1321

1422
#### [v0.2.1](https://github.com/shawn-sandy/codestudio/compare/v0.2.0...v0.2.1)

README.md

Lines changed: 64 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,66 @@
11
# CODESTUDIO
22

3-
**Favorite VSCODE extension for UI/UX development** (frontend). I have been able to comfortably run these on a `surfacebook pro i5 8gb of ram 256gb hd`, lets say I like living on the edge. I would recommend that you go with something more powerful.
3+
**A VSCODE extension-pack for UI/UX Frontend development**. I have been able to comfortably run (39+) extensions on a `surfacebook pro i5 8gb of ram 256gb hd`, lets say I like pushing it. If you are multitasking or run a lot of memory hungry apps (Chrome...), I would recommend that you go with something a bit more powerful.
4+
5+
### Install/Usage
6+
7+
- **VSCode market place** https://marketplace.visualstudio.com/items?itemName=shawnsandy.codestudio
8+
- Or go to your extensions panel `View > Extensions` and type `codestudio` in search box to find the extension than click install.
9+
10+
**Tip**
11+
12+
You can optimize VSC performance by tweaking some of VSC settings, here's an example one of my custom project settings `./vscode/settings.json`.
13+
14+
``` json
15+
{
16+
"files.associations": {
17+
"*.tag": "html",
18+
"*.cshtml": "html",
19+
"*.html": "html",
20+
"*.njk": "html",
21+
"*.mustache": "html",
22+
"*.html.md": "html"
23+
},
24+
"files.exclude": {
25+
"**/.git": true,
26+
"**/.DS_Store": true,
27+
"**/.vscode": true,
28+
"**/__pycache__": true,
29+
"**/.pytest_cache": true,
30+
"**/node_modules": true,
31+
"node_modules": true,
32+
"venv": true,
33+
"*.sublime-*": true,
34+
"env*": true
35+
},
36+
"search.exclude": {
37+
"**/node_modules": true,
38+
"**/bower_components": true,
39+
"**/env": true,
40+
"**/venv": true
41+
},
42+
"files.watcherExclude": {
43+
"**/.git/objects/**": true,
44+
"**/.git/subtree-cache/**": true,
45+
"**/node_modules/**": true,
46+
"**/env/**": true,
47+
"**/venv/**": true,
48+
"env-*": true
49+
},
50+
"files.autoSave": "onFocusChange",
51+
"files.trimTrailingWhitespace": true,
52+
"files.insertFinalNewline": true,
53+
"editor.cursorBlinking": "phase",
54+
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
55+
"editor.formatOnSave": true,
56+
"breadcrumbs.enabled": true,
57+
"editor.minimap.renderCharacters": false,
58+
"editor.minimap.maxColumn": 200,
59+
"editor.minimap.showSlider": "always"
60+
}
61+
62+
63+
```
464

565
## Extensions Included
666

@@ -18,7 +78,6 @@ ___
1878

1979
**Debugger for Chrome**
2080

21-
Id: msjsdiag.debugger-for-chrome
2281
Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.
2382
https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome
2483
___
@@ -218,11 +277,11 @@ If you would like to contribute to this extension
218277
- Clone the repo `git clone https://github.com/shawn-sandy/codestudio`
219278
- Add an extension to the `package.json` fix a bug/typo etc
220279
- Submit a Pull request
221-
- I will approve or regect
280+
- I will approve or reject accordingly
222281

223-
**Issues**
282+
###Issues
224283

225-
I you find any errors, bugs, typos, would like to recommend an extension, etc. Please open and issue here https://github.com/shawn-sandy/codestudio/issues
284+
I you find any errors, bugs, typos, would like to recommend an extension, etc. Please open an issue here https://github.com/shawn-sandy/codestudio/issues
226285

227286
### License
228287

0 commit comments

Comments
 (0)