Skip to content
This repository has been archived by the owner on Aug 28, 2019. It is now read-only.

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ajitbohra committed Dec 31, 2017
0 parents commit baa6290
Show file tree
Hide file tree
Showing 12 changed files with 778 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
.vsix
vsc-extension-quickstart.md
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// A launch configuration that launches the extension inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
5 changes: 5 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.vscode/**
.vscode-test/**
.gitignore
vsc-extension-quickstart.md
images/icon.gvdesign
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Change Log
All notable changes to the "vscode-powerpack" extension pack will be documented in this file.

## v1.0.0 - 2017-12-2017
- Initial release
674 changes: 674 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<p align="center"><img src="https://github.com/lubusIN/vscode-powerpack/blob/master/images/icon-github.png"></p>

<p align="center">
<a href="https://marketplace.visualstudio.com/items?itemName=lubus.vscode-powerpack"><img src="https://vsmarketplacebadge.apphb.com/version-short/lubus.vscode-powerpack.svg
" alt="Latest Stable Version"></a> <a href="https://marketplace.visualstudio.com/items?itemName=lubus.vscode-powerpack"><img src="https://vsmarketplacebadge.apphb.com/installs-short/lubus.vscode-powerpack.svg
" alt="Downloads"></a> <a href="https://marketplace.visualstudio.com/items?itemName=lubus.vscode-powerpack"><img src="https://vsmarketplacebadge.apphb.com/rating-short/lubus.vscode-powerpack.svg
" alt="Licence"></a> <a href="https://marketplace.visualstudio.com/items?itemName=lubus.vscode-powerpack"><img src="https://img.shields.io/aur/license/yaourt.svg" alt="Licence"></a>
</p>

**About**
--------------------
Extension pack to add awesomeness to visual studio code.

Installs following extensions to enhance you workflow.

- Sublime keybindings: Use sublime keymaps
- EditorConfig: Support for .editorconfig
- Advanced New File: Create new file/folder with ease
- Fileutils: Quick file operation using commands
- Todo Highlight: Track code tasks
- Bracket Pair Colorizer: Easy brackets tracking using colors
- Faker: Quickly insert dummy data


**Credits**
------------
* [Ajit Bohra](http://https://github.com/ajitbohra)

**About LUBUS**
---------------
[LUBUS](http://lubus.in) is a webdesign agency based in Mumbai, India.

**License**
-----------
vscode Powerpack is open-sourced software licensed under the [GPL 3.0 license](LICENSE.md)

**Change Log**
----------
For details [view changelog](CHANGELOG.md)
Binary file added images/icon-github.gvdesign
Binary file not shown.
Binary file added images/icon-github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/icon.gvdesign
Binary file not shown.
Binary file added images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "vscode-powerpack",
"displayName": "VScode PowerPack",
"description": "Add awesomeness to vscode",
"version": "1.0.0",
"publisher": "lubus",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#D9ECF8",
"theme": "dark"
},
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/lubusIN/vscode-powerpack/blob/master/README.md",
"bugs": {
"url": "https://github.com/lubusIN/vscode-powerpack/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/lubusIN/vscode-powerpack.git"
},
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Extension Packs"
],
"extensionDependencies": [
"ms-vscode.sublime-keybindings",
"EditorConfig.EditorConfig",
"patbenatar.advanced-new-file",
"sleistner.vscode-fileutils",
"wayou.vscode-todo-highlight",
"CoenraadS.bracket-pair-colorizer",
"deerawan.vscode-faker"
]
}

0 comments on commit baa6290

Please sign in to comment.