From e1986bd27bf9473a324267730d8088fa0cb1a793 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Thu, 26 Mar 2015 10:12:58 +0000 Subject: test --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 5754d55..bb880b6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ -mutt/cache/headers vim/bundle/ vifm/Trash/ mutt/mutt-colors-solarized/ mutt/temp/ passwords -mutt/cache/ +mutt/cache/* +mutt/cache/headers -- cgit v1.2.3 From 91e441d1f46722348fada96f8a74b32c9827d85d Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Thu, 26 Mar 2015 10:14:27 +0000 Subject: test --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index bb880b6..4c38576 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,4 @@ vifm/Trash/ mutt/mutt-colors-solarized/ mutt/temp/ passwords -mutt/cache/* -mutt/cache/headers +mutt/cache/ -- cgit v1.2.3 From b952023c9378fe8c54e3217823729d1b579bd478 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Sat, 28 Mar 2015 15:14:02 +0000 Subject: normal commit --- .gitignore | 1 + vim/mySnippets/tex.snippets | 4 ++++ zshrc | 3 +++ 3 files changed, 8 insertions(+) (limited to '.gitignore') 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' -- cgit v1.2.3