diff --git a/commonsh/10_alias b/commonsh/10_alias index 1e40707..65aa054 100755 --- a/commonsh/10_alias +++ b/commonsh/10_alias @@ -5,10 +5,8 @@ for dircolors in gdircolors dircolors ; do dircolor_text='' if [ -f "${HOME}/.dir_colors" ] ; then dircolor_text=`cat "${HOME}/.dir_colors"` - eval `$dircolors -b "${HOME}/.dir_colors"` elif [ -f /etc/DIR_COLORS ] ; then dircolor_text=`cat /etc/DIR_COLORS` - eval `$dircolors -b /etc/DIR_COLORS` fi if $dircolors --version 2>/dev/null | grep GNU >/dev/null 2>&1 ; then diff --git a/vimrc b/vimrc index 1742eb3..16ff75b 100644 --- a/vimrc +++ b/vimrc @@ -3,7 +3,7 @@ " Original author: Saleem Abdulrasool " vim: set ts=3 sw=3 et nowrap: -if has ('multi_byte') " Make sure we have unicode support +if has('multi_byte') " Make sure we have unicode support scriptencoding utf-8 " This file is in UTF-8 " ---- Terminal Setup ----