dotfiles
changeset 9:c5e14bee7dbc
vim: switched from spaces to tabs; bash: LANG now in env
author | meillo@marmaro.de |
---|---|
date | Thu, 22 Nov 2007 18:14:52 +0100 |
parents | f4fd1276a8b3 |
children | d339ec9b6545 |
files | .bashrc .vimrc |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/.bashrc Fri Oct 05 20:42:41 2007 +0200 1.2 +++ b/.bashrc Thu Nov 22 18:14:52 2007 +0100 1.3 @@ -3,6 +3,7 @@ 1.4 # modified standard bashrc of debian sarge 1.5 # 1.6 1.7 +export LANG=en_US.UTF-8 1.8 1.9 # ~/.bashrc: executed by bash(1) for non-login shells. 1.10 # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
2.1 --- a/.vimrc Fri Oct 05 20:42:41 2007 +0200 2.2 +++ b/.vimrc Thu Nov 22 18:14:52 2007 +0100 2.3 @@ -17,11 +17,14 @@ 2.4 2.5 set nocursorline 2.6 2.7 -set expandtab 2.8 +set noexpandtab 2.9 set shiftwidth=2 2.10 set softtabstop=2 2.11 set tabstop=2 2.12 2.13 +set cindent 2.14 +set pastetoggle=<F11> 2.15 + 2.16 syntax on 2.17 2.18 set number