aboutsummaryrefslogtreecommitdiff
path: root/bashrc
diff options
context:
space:
mode:
authorMiquel Sabaté <mikisabate@gmail.com>2013-12-09 08:43:23 +0100
committerMiquel Sabaté <mikisabate@gmail.com>2013-12-09 08:43:45 +0100
commit7a2314a744a3a2873c0224f509e2d0ee791dc592 (patch)
treed185e754fef5f9d9ecbd301425eae0531b39ddba /bashrc
parente44a4a01eaaad060499f4affaea18d4a5b2631fd (diff)
downloaddotfiles-7a2314a744a3a2873c0224f509e2d0ee791dc592.tar.gz
dotfiles-7a2314a744a3a2873c0224f509e2d0ee791dc592.zip
bash: set the LESS and the PAGER environment variables.
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/bashrc b/bashrc
index e93dfa8..0bf31c8 100644
--- a/bashrc
+++ b/bashrc
@@ -15,6 +15,10 @@ export EDITOR=vim
export VISUAL=vim
alias vi=vim
+# Set the LESS and the PAGER environment variables.
+export LESS="FSRX"
+export PAGER=less
+
# git completion
source $HOME/.gitcompletion.sh
PS1='\u:\w$(__git_ps1 "\[\033[0;32m\]@\[\033[1;32m\]%s\[\033[0m\]\]") $ '