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
| alias gh="git checkout" | |
| alias ghb="git checkout -b" | |
| alias gu="git push" | |
| alias gd="git pull" | |
| alias gm="git merge" | |
| alias gs="git stash" | |
| alias gmm="git stash && gh main && gu && gh - && gm main" |
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
| /** | |
| * @name Small window | |
| * @author guilerme#5230 | |
| * @version 1.0.0 | |
| * @source https://gist.github.com/guilhermelimak/602ca1cad94755fcb0cc2a5fc6ea0228 | |
| * @website https://gist.github.com/guilhermelimak/602ca1cad94755fcb0cc2a5fc6ea0228 | |
| * @description Use discord voice chat in a small window | |
| */ | |
| @media only screen and (max-width: 1000px) { |
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
| yarn add -D prettier | |
| cat > ./.prettierrc <<EOL | |
| { | |
| "printWidth": 80, | |
| "singleQuote": true, | |
| "trailingComma": "es5" | |
| } | |
| EOL | |
| npx add-project-script -n "format:check" -v "prettier --check './src/**/*.{tsx,ts}'" | |
| npx add-project-script -n "format" -v "prettier --write './src/**/*.{tsx,ts}'" |
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
| * { | |
| color: #DDD; | |
| background: #101010!important; | |
| border-color: #333 !important; | |
| } | |
| .prettyprint, | |
| code span { | |
| color: initial; | |
| background-color: #ccc !important; |
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
| ## Starts a tmux session on ssh connect | |
| if [[ -z "$TMUX" ]] && [ "$SSH_CONNECTION" != "" ]; then | |
| tmux attach-session -t ssh_tmux || tmux new-session -s ssh_tmux | |
| fi |
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
| { | |
| "tabWidth": 2, | |
| "semi": false, | |
| "singleQuote": true | |
| } |
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
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
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
| export TERM=xterm-256color | |
| # Change default zim location | |
| export ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim | |
| # Source zim | |
| if [[ -s ${ZIM_HOME}/init.zsh ]]; then | |
| source ${ZIM_HOME}/init.zsh | |
| fi |
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
| filetype plugin indent on " required | |
| nnoremap <SPACE> <Nop> | |
| let mapleader=" " | |
| " ============== | |
| " == Settings | |
| " ============== | |
| syntax enable | |
| " set colorcolumn=100 | |
| set pastetoggle=<F2> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>author</key> | |
| <string>Ihor Oleksandrov</string> | |
| <key>colorSpaceName</key> | |
| <string>sRGB</string> | |
| <key>name</key> | |
| <string>Boxy Ocean</string> |
NewerOlder