From 6360f474097202905749ff48187d02b06982d608 Mon Sep 17 00:00:00 2001 From: Mark Szymanski Date: Tue, 19 Oct 2010 15:49:57 -0500 Subject: [PATCH 1/4] Changed ex alias for exit to q, turns ex is the command for entering vim's ex mode. --- aliases/general.aliases.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aliases/general.aliases.bash b/aliases/general.aliases.bash index c09ddffe..d9041ebf 100644 --- a/aliases/general.aliases.bash +++ b/aliases/general.aliases.bash @@ -10,7 +10,7 @@ alias l='ls -a' alias c='clear' alias k='clear' -alias ex="exit" +alias q="exit" # Pianobar can be found here: http://github.com/PromyLOPh/pianobar/ From b4a85906e5887ba36f0e248c31b9dac33fe1d43f Mon Sep 17 00:00:00 2001 From: Mark Szymanski Date: Wed, 20 Oct 2010 17:41:08 -0500 Subject: [PATCH 2/4] Some minor formatting changes to README --- README.md | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index f889adb5..35217e74 100644 --- a/README.md +++ b/README.md @@ -6,32 +6,28 @@ Includes some autocompletion tools, theming support, aliases, custom functions, ## Install -Check a clone of this repo. You can view what a sample ~/.bash\_profile looks like in template/bash\_profile.template.bash. If you wanted to use that template, make sure to make a backup of your current ~/.bash\_profile file. +Check a clone of this repo. You can view what a sample `~/.bash_profile` looks like in `template/bash_profile.template.bash`. If you wanted to use that template, make sure to make a backup of your current `~/.bash_profile` file. -

-git clone http://github.com/revans/bash-it.git bash_it
+	git clone http://github.com/revans/bash-it.git bash_it
 
-cp ~/.bash_profile ~/.bash_profile_original
-cp /template/bash_profile.template.bash ~/.bash_profile
+	cp ~/.bash_profile ~/.bash_profile_original
+	cp /template/bash_profile.template.bash ~/.bash_profile
 
-
## Help Screens -

-bash-it (will show all the help commands)
-aliases-help
-rails-help
-git-help
-
+ bash-it (will show all the help commands) + aliases-help + rails-help + git-help ## Your Custom scripts, aliases, and functions For custom scripts, and aliases, you can create the following files and they will be ignored by the git repo: -* aliases/custom.aliases.bash -* lib/custom.bash -* plugins/custom.plugins.bash +* `aliases/custom.aliases.bash` +* `lib/custom.bash` +* `plugins/custom.plugins.bash` and anything in the custom directory will be ignored with the exception of custom/example.bash. From f1f12d2da0a1ec5b771898dffd1d50114f500c08 Mon Sep 17 00:00:00 2001 From: Mark Szymanski Date: Wed, 20 Oct 2010 17:42:02 -0500 Subject: [PATCH 3/4] Added another formatting change I overlooked --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35217e74..faeb5d3d 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ For custom scripts, and aliases, you can create the following files and they wil * `lib/custom.bash` * `plugins/custom.plugins.bash` -and anything in the custom directory will be ignored with the exception of custom/example.bash. +and anything in the custom directory will be ignored with the exception of `custom/example.bash`. ## Themes From e7dd619ba649624987a0073d826c261650252bd4 Mon Sep 17 00:00:00 2001 From: Mark Szymanski Date: Thu, 21 Oct 2010 16:18:05 -0500 Subject: [PATCH 4/4] Added editor and pager alias to open your $EDITOR or $PAGER, respectively. --- aliases/general.aliases.bash | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aliases/general.aliases.bash b/aliases/general.aliases.bash index d9041ebf..1d43d451 100644 --- a/aliases/general.aliases.bash +++ b/aliases/general.aliases.bash @@ -10,6 +10,9 @@ alias l='ls -a' alias c='clear' alias k='clear' +alias editor="$EDITOR" +alias pager="$PAGER" + alias q="exit" # Pianobar can be found here: http://github.com/PromyLOPh/pianobar/