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
| FROM node:8.5.0 | |
| # Isso vai te ajudar a lidar com os signais tipo SIGKILL | |
| RUN wget https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64.deb | |
| RUN dpkg -i dumb-init_*.deb | |
| ENTRYPOINT ["dumb-init"] | |
| # Google Chrome | |
| RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - | |
| RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' |
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
| ag "$1" --jade --vimgrep | cut -f1,2 -d: | awk -F: '{ print "git blame -L"$2",-1 --show-name -- " $1 }' | sh |
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-option -g default-terminal screen-256color | |
| set-option -g bell-action any | |
| set-option -g history-limit 500000 | |
| set-option -g base-index 1 | |
| set-option -g xterm-keys on | |
| set-option -s escape-time 10 | |
| set-window-option -g monitor-activity on | |
| set-window-option -g pane-base-index 1 | |
| # Mapeamento de teclas |
NewerOlder