comparison rc/bashrc @ 747:47da3cb3eafa

[bashrc] C.UTF-8 seems pretty common now
author nanaya <me@nanaya.net>
date Mon, 10 Nov 2025 17:30:24 +0900
parents 687d9ee4a5c9
children 3cacb4270864
comparison
equal deleted inserted replaced
746:6b7f6f09b8d1 747:47da3cb3eafa
69 HISTCONTROL=ignorespace:ignoredups:erasedups 69 HISTCONTROL=ignorespace:ignoredups:erasedups
70 PROMPT_COMMAND='history -a; history -c; history -r' 70 PROMPT_COMMAND='history -a; history -c; history -r'
71 71
72 export PAGER=more 72 export PAGER=more
73 export EDITOR=vi 73 export EDITOR=vi
74 export LANG="en_US.UTF-8" 74 export LANG="C.UTF-8"
75 export LC_CTYPE="en_US.UTF-8" 75 export LC_ALL="C.UTF-8"
76 # The en_US.UTF-8 causes weird sorting.
77 # (not really, but I prefer C based sort.)
78 export LC_COLLATE=C
79 export LC_MESSAGES=C
80 export CLICOLOR= 76 export CLICOLOR=
81 export LSCOLORS="gxfxcxdxbxegedabagacad" 77 export LSCOLORS="gxfxcxdxbxegedabagacad"
82 export LS_COLORS= 78 export LS_COLORS=
83 export BLOCKSIZE=1K 79 export BLOCKSIZE=1K
84 export BLOCK_SIZE=si 80 export BLOCK_SIZE=si
85 81
86 alias ls="ls -F" 82 alias ls="ls -F"
87 alias rd="rdesktop -g 1280x600 -K -a 15 -x m -z -P -r sound:off -r clipboard:CLIPBOARD -5" 83 alias rd="rdesktop -g 1280x600 -K -a 15 -x m -z -P -r sound:off -r clipboard:CLIPBOARD -5"
88 alias man="LANG=C LC_ALL=C LC_CTYPE=C man"
89 alias be="bundle exec" 84 alias be="bundle exec"
90 alias ll="ls -l" 85 alias ll="ls -l"
91 alias la="ls -A" 86 alias la="ls -A"
92 alias htop="TERM=xterm htop -M" 87 alias htop="TERM=xterm htop -M"
93 88