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
| // remove trailing whitespaces (end of line) | |
| [ \t]+$ | |
| // remove trailing whitespaces (beginning of line) | |
| ^[ \t]+ | |
| // remove empty space, whenever there are more than one | |
| [ ]{2,} | |
| // empty lines |
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 bash | |
| # Define Colors | |
| COL_BLUE="\[\e[38;5;111m\]" | |
| COL_RED="\[\e[38;5;203m\]" | |
| COL_CYAN="\[\e[38;5;45m\]" | |
| COL_GREEN="\[\e[38;5;84m\]" | |
| COL_YELLOW="\[\e[38;5;220m\]" | |
| COL_PINK="\[\e[38;5;204m\]" |
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
| [push] | |
| default = current | |
| [core] | |
| trustctime = false | |
| editor = nano | |
| filemode = false | |
| autocrlf = input | |
| [credential] | |
| helper = cache --timeout=3600 | |
| [merge] |
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
| _atom sync settings_ |