vimrc update

This commit is contained in:
Daniel Bauer
2017-12-13 17:04:24 +01:00
parent 44eedb4580
commit 083a69a298
3 changed files with 41 additions and 0 deletions

39
.zshrc_functions Normal file
View File

@@ -0,0 +1,39 @@
#!/bin/bash
# open a web browser on google for a query
function google {
function urlencode {
print "${${(j: :)@}//(#b)(?)/%$[[##16]##${match[1]}]}"
}
xdg-open "https://www.google.com/search?q=`urlencode "${(j: :)@}"`"
}
# open a web browser on google for a query
function google {
function urlencode {
print "${${(j: :)@}//(#b)(?)/%$[[##16]##${match[1]}]}"
}
xdg-open "https://www.google.com/search?q=`urlencode "${(j: :)@}"`"
}
# alter keyboard layout
setKeyboard() {
setxkbmap -layout $1
}
# download pdb file to current dir
pdb() {
URL=http://www.rcsb.org/pdb/files/$1.pdb.gz
if [ -z "$2" ]; then
2="./"
fi
wget $URL -P $2
gunzip $2/$1.pdb.gz
}
alias groclean='rm \#*'