My zsh configuration
git clone https://github.com/m-col/zshrc
Files | Refs | Readme

Commit 1b5d648de04046ecc9f9ffc4d0aa356a209f7806
Parent: d94d2659ac66a2dc2c9103cc93691eea4113eb10
Author: mcol <mcol@posteo.net>
Date: 2019-08-09 15:13:35 +0100
Committer: mcol <mcol@posteo.net>
Committed: 2019-08-09 15:13:35 +0100

add python setup.py shortcuts, remove hidden files from ranger and l

rc.conf Modified

@@ -26,7 +26,7 @@
 set hidden_filter ^\.|\.(?:pyc|pyo|bak|swp)$|^lost\+found$|^__(py)?cache__$
 
 # Show hidden files? You can toggle this by typing 'zh'
-set show_hidden true
+set show_hidden false
 
 # Ask for a confirmation when running the "delete" command?
 # Valid values are "always", "never", "multiple" (default)

aliases Modified

@@ -6,7 +6,7 @@
 # misc
 alias ..='cd ../'
 alias ...='cd ../../'
-alias l='ls -alhF'
+alias l='ls -lhF'
 alias lc='ls -c1'
 alias tmp='cd /tmp; l'
 alias _='sudo'
@@ -60,6 +60,9 @@
 
 # tools
 alias usync='rsync -avPzh --delete'
+alias psb='python setup.py build'
+alias psi='python setup.py install'
+alias psiu='python setup.py install --user'
 
 # quick edits
 alias modalia='vim $HOME/.config/aliases'