From 8b20a7a801eb57379759f915804a88f09354d8d0 Mon Sep 17 00:00:00 2001 From: surdeus Date: Mon, 21 Nov 2022 03:27:52 +0500 Subject: [PATCH] ... --- dot/file/exrc | 2 ++ dot/file/profile | 8 ++++---- dot/file/shrc | 4 ++++ 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/dot/file/exrc b/dot/file/exrc index 7cda15a..1babb7d 100644 --- a/dot/file/exrc +++ b/dot/file/exrc @@ -1 +1,3 @@ set autoindent +set ts=4 + diff --git a/dot/file/profile b/dot/file/profile index 6c7da28..32a0f52 100755 --- a/dot/file/profile +++ b/dot/file/profile @@ -20,11 +20,11 @@ export_loop \ ENV '$HOME/.shrc' \ PROMPT '"; "' \ PS1 '"$PROMPT"' \ - SUDO_PROMPT '"#"' \ - EDITOR 'vi' \ - VISUAL 'vi' \ + SUDO_PROMPT '"# "' \ + EDITOR '`goblin useprog vim vi ed`' \ + VISUAL '$EDITOR' \ GIT_EDITOR '$VISUAL' \ - PAGER 'less' \ + PAGER '`goblin useprog less more`' \ MANPAGER '$PAGER' \ \ CDHIST '$HOME/lib/cds' \ diff --git a/dot/file/shrc b/dot/file/shrc index e181a1c..f4aa2cd 100644 --- a/dot/file/shrc +++ b/dot/file/shrc @@ -62,6 +62,10 @@ e() { $EDITOR $@ } +ev() { + $VISUAL $@ +} + t() { tree $@ }