This file contains hidden or 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
set -g mouse on | |
set-option -g allow-rename off | |
# switch panes using Alt-arrow without prefix | |
bind -n M-Left select-pane -L | |
bind -n M-Right select-pane -R | |
bind -n M-Up select-pane -U | |
bind -n M-Down select-pane -D | |
# copy to clipboard |
This file contains hidden or 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
!/bin/env sh | |
for repo in `cat repo.txt` | |
do | |
git clone "$repo" | |
echo | |
echo ==== | |
echo | |
done |
This file contains hidden or 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "ng serve", | |
"type": "chrome", | |
"request": "launch", | |
"preLaunchTask": "npm: start", | |
"url": "http://localhost:4200/#", | |
"webRoot": "${workspaceFolder}", |
This file contains hidden or 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
# See http://help.github.com/ignore-files/ for more about ignoring files. | |
# compiled output | |
**/dist | |
**/tmp | |
**/out-tsc | |
# Only exists if Bazel was run | |
**/bazel-out | |
# dependencies |
This file contains hidden or 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
**/target/ | |
!.mvn/wrapper/maven-wrapper.jar | |
### STS ### | |
.apt_generated | |
.classpath | |
.factorypath | |
.project | |
.settings | |
.springBeans |
This file contains hidden or 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
#!/usr/bin/env sh | |
# author: Bruno Parolini brunoparolini@gmail.com | |
# description: Generates a GPG2 key | |
# version: 2.0 | |
if [ $# -eq 0 ] | |
then | |
echo "No arguments supplied." | |
echo "You must inform \"<user_email>\"" |
This file contains hidden or 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
#!/usr/bin/env sh | |
# author: Bruno Parolini brunoparolini@gmail.com | |
# description: Sets Git global configuration (it assumes kwrite and kdiff3 are installed in the system) | |
# version: 1.0 | |
if [ $# -eq 0 ] | |
then | |
echo "No arguments supplied." | |
echo "You must inform \"<user_name>\" \"<user_email>\" \"[<user_signingkey>]\"" |
This file contains hidden or 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
# Editor configuration, see http://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
tab_width = 4 | |
indent_size = 4 | |
indent_style = space | |
insert_final_newline = true | |
end_of_line = lf |