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
| # simplify_path.gd | |
| # | |
| # Simplification of a 3D-polyline. | |
| # A port of https://gist.github.com/yageek/287843360aeaecdda14cb12f9fbb60dc | |
| # which is port of https:#github.com/hgoebl/simplify-java for Swift | |
| # | |
| # | |
| # The MIT License (MIT) | |
| # | |
| # Swift port by Lachlan Hurst on 10/02/2015. |
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 ls="ls -GFA" | |
| # Taken from Arch linux wiki at https://wiki.archlinux.org/index.php/Color_Bash_Prompt | |
| PS1="\[\e[1;32m\][\u]\[\e[1;32m\]:\[\e[0;31m\]\W\[\e[1;32m\] \$\[\e[0;33m\] " | |
| # This resets the ehcho text to whit after the input is set to yellow above | |
| trap 'echo -ne "\033[0m"' DEBUG |
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
| # https://wiki.archlinux.org/index.php/Tmux | |
| set -g default-terminal "xterm-256color" | |
| set -g mode-mouse on | |
| set -g mouse-select-pane on | |
| set -g mouse-resize-pane on | |
| set -g mouse-select-window on | |
| # Set window index to 1 | |
| set -g base-index 1 |