summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--vim/mySnippets/tex.snippets4
-rw-r--r--zshrc3
3 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 4c38576..0b3f2c4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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
diff --git a/zshrc b/zshrc
index e97b90d..6bb4e37 100644
--- a/zshrc
+++ b/zshrc
@@ -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'