diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | vim/mySnippets/tex.snippets | 4 | ||||
-rw-r--r-- | zshrc | 3 |
3 files changed, 8 insertions, 0 deletions
@@ -4,3 +4,4 @@ mutt/mutt-colors-solarized/ mutt/temp/ passwords mutt/cache/ +mutt/cache/headers diff --git a/vim/mySnippets/tex.snippets b/vim/mySnippets/tex.snippets index ff3fc0a..0f64ef6 100644 --- a/vim/mySnippets/tex.snippets +++ b/vim/mySnippets/tex.snippets @@ -77,3 +77,7 @@ endsnippet snippet cont "Continuous function" i \cont{$1}{$2} $0 endsnippet + +snippet ref "Clever reference" i +\cref{$1}$0 +endsnippet @@ -63,6 +63,9 @@ alias mail='offlineimap' alias ca='printf "\ec"' alias update='sudo apt-get update' alias upgrade='sudo apt-get upgrade' +alias push='git push origin master' +alias pull='git pull origin master' +alias commit='git commit -a -m "auto-commit"' # Configuration alias ez='vim ~/.zshrc' |