Skip to content

Commit

Permalink
Updates the readme info
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnsandy committed Jul 14, 2019
1 parent 42fd3aa commit 87aac53
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,21 @@

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

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

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

> 14 July 2019
- Updates package keywords [`097844e`](https://github.com/shawn-sandy/codestudio/commit/097844e92603b4e2dad141c39c27f3c460b4eb41)
- Generated changelog [`40d9a19`](https://github.com/shawn-sandy/codestudio/commit/40d9a19ba56f1e6fae74c2163ce82cf2c9ef5a73)
- Adds newline break missing on some titles [`29ee09e`](https://github.com/shawn-sandy/codestudio/commit/29ee09ef0a5e8073491e27588b8b1c925572359a)

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

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

#### [v0.2.1](https://github.com/shawn-sandy/codestudio/compare/v0.2.0...v0.2.1)
Expand Down
69 changes: 64 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,66 @@
# CODESTUDIO

**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.
**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.

### Install/Usage

- **VSCode market place** https://marketplace.visualstudio.com/items?itemName=shawnsandy.codestudio
- Or go to your extensions panel `View > Extensions` and type `codestudio` in search box to find the extension than click install.

**Tip**

You can optimize VSC performance by tweaking some of VSC settings, here's an example one of my custom project settings `./vscode/settings.json`.

``` json
{
"files.associations": {
"*.tag": "html",
"*.cshtml": "html",
"*.html": "html",
"*.njk": "html",
"*.mustache": "html",
"*.html.md": "html"
},
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/.vscode": true,
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/node_modules": true,
"node_modules": true,
"venv": true,
"*.sublime-*": true,
"env*": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true
},
"files.autoSave": "onFocusChange",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.cursorBlinking": "phase",
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"editor.formatOnSave": true,
"breadcrumbs.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 200,
"editor.minimap.showSlider": "always"
}


```

## Extensions Included

Expand All @@ -18,7 +78,6 @@ ___

**Debugger for Chrome**

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

**Issues**
###Issues

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
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

### License

Expand Down

0 comments on commit 87aac53

Please sign in to comment.