https://github.com/powerline/fonts
Set font to one of the fonts in Powerline i.e. Droid Sans Mono Slashed for Powerline
Probably set the color palette. Linux console works well.
https://github.com/powerline/fonts
Set font to one of the fonts in Powerline i.e. Droid Sans Mono Slashed for Powerline
Probably set the color palette. Linux console works well.
| #!/bin/bash | |
| # Find all files ending in "*.py", but exclude the ./venv directory | |
| find . -path ./venv -prune -o -name '*.py' -print |
| #!/bin/bash | |
| # Based on http://askubuntu.com/a/630530 | |
| wget -q https://github.com/atom/atom/releases/latest -O /tmp/latest | |
| wget -q https://github.com$(grep -E 'href=".*atom-amd64.deb' /tmp/latest --only | sed -e 's/href="//') -O /tmp/atom-amd64.deb | |
| sudo dpkg -i /tmp/atom-amd64.deb |
| find -E . -regex ".*\.(html|css|js) ! -type d -exec bash -c 'expand -t 4 "$0" > /tmp/e && mv /tmp/e "$0"' {} \; |
| # Custom OSX .profile | |
| # Set default editor to emacs | |
| export EDITOR=emacs | |
| # Specify a custom prompt. This is linux mint-ish. | |
| export PS1="\[[32m\]\u@\h\[[37m\]:\[[36m\]\w\[[30m\]$\[[m\] " |