-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding IDE configs and tools instalation scripts
- Loading branch information
ichupryna
committed
Mar 17, 2017
1 parent
a7e7d1b
commit 92447bc
Showing
14 changed files
with
5,522 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
npm install -g bower | ||
npm install -g grunt | ||
npm install -g gulp | ||
npm install -g karma | ||
npm install -g protractor | ||
npm install -g jshint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
sudo apt update | ||
sudo apt upgrade | ||
sudo apt install terminator | ||
|
||
sudo apt -y install \ | ||
apt-transport-https \ | ||
ca-certificates \ | ||
curl | ||
|
||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | ||
|
||
sudo add-apt-repository \ | ||
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | ||
$(lsb_release -cs) \ | ||
stable" | ||
|
||
sudo apt update | ||
|
||
sudo apt -y install docker-ce | ||
|
||
sudo groupadd docker | ||
sudo usermod -aG docker $USER | ||
|
||
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | ||
sudo apt-get install -y nodejs | ||
|
||
sudo apt update | ||
sudo apt autoremove |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[*.md] | ||
# editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
|
||
[*.html] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.js] | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
## Темплейт настройки некторых текстовых редактотов | ||
читайте [тут](http://editorconfig.org/) | ||
* переименовываем в .editorconfig | ||
* делаем копию или софтлинк там где необходимо |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Code styles to IDE. | ||
Install to IDEA. | ||
- copy intellij-java-google-style.xml to $HOME$\$IDEA$\config\codestyles | ||
- open IntelliJIdea, File - Settings - Editor - Code style - Scheme, select GoogleStyle from dropdown list. | ||
- press Ok. | ||
|
||
Install to Eclipse | ||
- Windows -> Preferences -> Java -> Code Style -> Formatter | ||
eclipse-java-google-style.xml | ||
Set the property "Indent using spaces" and "Indentation size" = 2. |
Oops, something went wrong.