summaryrefslogtreecommitdiff
path: root/user:hugues
diff options
context:
space:
mode:
Diffstat (limited to 'user:hugues')
-rw-r--r--user:hugues/Aliases.zsh15
-rw-r--r--user:hugues/Environment.zsh4
-rw-r--r--user:hugues/GusBindings.zsh2
3 files changed, 14 insertions, 7 deletions
diff --git a/user:hugues/Aliases.zsh b/user:hugues/Aliases.zsh
index aefe795..99304f8 100644
--- a/user:hugues/Aliases.zsh
+++ b/user:hugues/Aliases.zsh
@@ -7,8 +7,8 @@
## You are encouraged to use, modify, and redistribute
## these files with or without this notice.
##
-a -g ¬ISO='LC_ALL=fr_FR'
-a -g ¬UTF='LC_ALL=fr_FR.UTF-8'
+a -g ¬ISO='LC_ALL=br_FR'
+a -g ¬UTF='LC_ALL=br_FR.UTF-8'
a -g ...=../..
a -g ....=../../..
@@ -17,9 +17,16 @@ a -g ......=../../../../..
a -g .......=../../../../../..
a -g ........=../../../../../../..
a -g .........=../../../../../../../..
-
+a -g ..........=../../../../../../../../..
+a -g ...........=../../../../../../../../../..
+a -g ............=../../../../../../../../../../..
+a -g .............=../../../../../../../../../../../..
+a -g ..............=../../../../../../../../../../../../..
+a -g ...............=../../../../../../../../../../../../../..
+a -g ................=../../../../../../../../../../../../../../..
+
if ( __cmd_exists emacs )
-then
+then
a e='emacs'
a ne='e -nw'
a gnus='e -f gnus'
diff --git a/user:hugues/Environment.zsh b/user:hugues/Environment.zsh
index 112110e..492fdc9 100644
--- a/user:hugues/Environment.zsh
+++ b/user:hugues/Environment.zsh
@@ -35,8 +35,8 @@ export LESS="-R -F -X"
export NULLCMD=cat
# Locale en français unicode
-export LC_ALL=${LC_ALL:-fr_FR.UTF-8}
-export LC_MESSAGES=${LC_MESSAGES:-fr_FR}
+export LC_ALL=${LC_ALL:-br_FR.UTF-8}
+export LC_MESSAGES=${LC_MESSAGES:-br_FR}
unset LANG # Unuseful
# Utilisation des commandes git-*
diff --git a/user:hugues/GusBindings.zsh b/user:hugues/GusBindings.zsh
index b156e68..1d29f50 100644
--- a/user:hugues/GusBindings.zsh
+++ b/user:hugues/GusBindings.zsh
@@ -220,7 +220,7 @@ do
bindkey -M $keymap -s '^[c' '^[Q configure\n'
bindkey -M $keymap -s '^[©' '^[Q !?configure\n'
- alias MAKE="[ ! -e Makefile -a ! -e GNUmakefile ] && ( [ ! -e configure ] && ./autogen.sh ; ./configure && make ) || make"
+ alias MAKE="[ ! -e Makefile -a ! -e GNUmakefile ] && ( [ ! -e configure ] && [ -e autogen.sh ] && ./autogen.sh || [ -e configure.ac ] && autoreconf --install ; ./configure && make ) || make"
bindkey -M $keymap -s '^[m' '^[Q MAKE\n'
bindkey -M $keymap -s '^[M' '^[Q make\n'