summaryrefslogtreecommitdiff
path: root/_posts/2008-06-18-keep-your-zshrc-simple.md
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2013-11-26 10:36:10 -0800
committerFranck Cuny <franck.cuny@gmail.com>2013-11-26 10:36:10 -0800
commit8ddf2e94df70707b458528a437759b96046d3e01 (patch)
treed442818d92d3c9c6f7fcdc92857a1228963849a1 /_posts/2008-06-18-keep-your-zshrc-simple.md
parentDon't need to use the IP in the makefile. (diff)
downloadlumberjaph-8ddf2e94df70707b458528a437759b96046d3e01.tar.gz
Huge update.
Moved all posts from textile to markdown. Updated all the CSS and styles. Added a new page for the resume.
Diffstat (limited to '_posts/2008-06-18-keep-your-zshrc-simple.md')
-rw-r--r--_posts/2008-06-18-keep-your-zshrc-simple.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/_posts/2008-06-18-keep-your-zshrc-simple.md b/_posts/2008-06-18-keep-your-zshrc-simple.md
index bbfe4d2..65332bd 100644
--- a/_posts/2008-06-18-keep-your-zshrc-simple.md
+++ b/_posts/2008-06-18-keep-your-zshrc-simple.md
@@ -1,12 +1,12 @@
---
layout: post
title: keep your zshrc simple
-summary: In which I explain how I maintain my zsh configuration
+summary: In which I explain how I maintain my zsh configuration.
---
Keep your .zshrc simple. Mine looks like this :
-```sh
+{% highlight vim %}
autoload -U compinit zrecompile
zsh_cache=${HOME}/.zsh_cache
mkdir -p $zsh_cache
@@ -19,11 +19,11 @@ for zshrc_snipplet in ~/.zsh.d/S[0-9][0-9]*[^~] ; do
source $zshrc_snipplet
done
function history-all { history -E 1 }
-```
+{% endhighlight %}
and then, in my **.zsh.d** directory, I've got:
-```
+{% highlight sh %}
S10_zshopts
S20_environment
S30_binds
@@ -32,6 +32,6 @@ S50_aliases
S60_prompt
S71_ssh
S72_git
-```
+{% endhighlight %}
All my aliases are in the same file, it's much easier to search/find/add.