set fileencodings=ucs-bom,utf-8,latin1
endif
-set nocompatible " Use Vim defaults (much better!)
+set nocompatible " Use Vim defaults (much better!)
set bs=indent,eol,start " allow backspacing over everything in insert mode
-"set ai " always set autoindenting on
-"set backup " keep a backup file
-set viminfo='20,\"50 " read/write a .viminfo file, don't store more
- " than 50 lines of registers
-set history=50 " keep 50 lines of command line history
-set ruler " show the cursor position all the time
+"set ai " always set autoindenting on
+set noai " always set autoindenting off
+"set backup " keep a backup file
+set viminfo='20,\"50 " read/write a .viminfo file, don't store more
+ " than 50 lines of registers
+set history=50 " keep 50 lines of command line history
+set ruler " show the cursor position all the time
+
+set modeline
+set showmatch
+set ignorecase
+
+if has("multi_byte")
+ set encoding=utf-8
+ setglobal fileencoding=utf-8
+ set listchars=tab:»·,trail:·,nbsp:⎵
+else
+ echoerr "Sorry, this version of (g)vim was not compiled with +multi_byte"
+ set listchars=tab:>-,trail:.
+endif
+
+color delek
+
+syntax on
+
+" Always show statusline
+set laststatus=2
+
+set t_Co=256
" Only do this part when compiled with support for autocommands
if has("autocmd")
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
syntax on
- set hlsearch
+ " set hlsearch
+ set nohlsearch
endif
filetype plugin on
if &term=="xterm"
- set t_Co=8
+ " set t_Co=8
set t_Sb=\e[4%dm
set t_Sf=\e[3%dm
endif