summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfig/chroot_local-hooks/hotfixes.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/config/chroot_local-hooks/hotfixes.sh b/config/chroot_local-hooks/hotfixes.sh
index d30d0ff..fa0a60c 100755
--- a/config/chroot_local-hooks/hotfixes.sh
+++ b/config/chroot_local-hooks/hotfixes.sh
@@ -13,9 +13,10 @@ fi
# vim tuning
if [ -d /etc/vim ]; then
rm -f /etc/vim/vimrc.local
-wget -O /etc/vim/vimrc.local https://raw.github.com/amix/vimrc/master/vimrcs/basic.vim
-cat <<EOT >> /etc/vim/vimrc.local
-
+cat <<EOT > /etc/vim/vimrc.local
+syntax on
+set background=dark
+set showmatch " Show matching brackets.
set pastetoggle=<F10>
EOT
fi