aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vimrc2
-rw-r--r--zshrc1
2 files changed, 2 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 645f461..ae560fa 100644
--- a/vimrc
+++ b/vimrc
@@ -12,7 +12,7 @@ call pathogen#helptags()
set nocompatible " use vim, not vi settings
set wildmenu " command line tab completion menu
-set wildignore=*.pyc,.git
+set wildignore=*.pyc,.git " ignore from autocomplete
set ruler " show the cursor position all the time
set showcmd " display incomplete commands
set incsearch " do incremental searching
diff --git a/zshrc b/zshrc
index c715183..15cb1c7 100644
--- a/zshrc
+++ b/zshrc
@@ -1,6 +1,7 @@
for config_file (~/.zsh/*.zsh) source $config_file
export EDITOR=vim
+export LANG=en_US.UTF-8
if [ -e $HOME/.zshrc-local ]; then
source $HOME/.zshrc-local