|
set nocompatible
" source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set nu
set wrap!
if has("gui_running")
set lines=999
set columns=999
endif
set sw=4
set expandtab
set smarttab
set backspace=eol,start,indent
" Platform
function! MySys()
return "windows"
endfunction
"Set mapleader
let mapleader = ","
let g:mapleader = ","
set tags=./tags,tags,./**/tags,d:\GTK2\tags,d:\GTK1\tags
syntax enable
filetype plugin indent on
colorscheme Borland |
|