summaryrefslogtreecommitdiffstats
path: root/.profile
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2013-04-23 16:09:23 +0200
committerJan Pokorný <jpokorny@redhat.com>2013-04-23 16:09:23 +0200
commit885b0d0a54efdcd2f47ced62af5d6d5ab6d8f815 (patch)
tree3fe5663d9ccb55916909938f4a6a75e58252b356 /.profile
parentf456db3d314d9d2c8939373c660310aa7b933c92 (diff)
downloaddotfiles-885b0d0a54efdcd2f47ced62af5d6d5ab6d8f815.tar.gz
dotfiles-885b0d0a54efdcd2f47ced62af5d6d5ab6d8f815.tar.xz
dotfiles-885b0d0a54efdcd2f47ced62af5d6d5ab6d8f815.zip
Profile settings: explicit EDITOR and PAGER
PAGER follows what git uses (well chosen) Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to '.profile')
-rw-r--r--.profile6
1 files changed, 4 insertions, 2 deletions
diff --git a/.profile b/.profile
index b03e8ec..65b844b 100644
--- a/.profile
+++ b/.profile
@@ -1,2 +1,4 @@
-export PATH=$PATH:$HOME/.local/bin:$HOME/bin
-export KRB5_CONFIG=$HOME/.krb5conf
+export PATH="${PATH}:${HOME}/.local/bin:${HOME}/bin"
+export KRB5_CONFIG="${HOME}/.krb5conf"
+export EDITOR="vim"
+export PAGER="less -FRXS"