Skip to content

Commit afec694

Browse files
committed
Splitting shell "setup" into logical bits.
It all makes sense now. The history stuff goes in history.bash, the locale stuff (that's what LC_CTYPE is all about, right?) goes to locale.bash, and the rest doesn't exist so setup.bash can be removed.
1 parent a42a859 commit afec694

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

shell/setup.bash shell/history.bash

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
export LC_CTYPE=en_us.UTF-8
2-
31
shopt -s histappend
42
export HISTSIZE=10000
53
export HISTFILESIZE=${HISTSIZE}

shell/locale.bash

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export LC_CTYPE=en_us.UTF-8

0 commit comments

Comments
 (0)