6.1-29 - clean up vimrc (fix #84088) - clean up specfile so that it works with vim's specfile mode - remove unused rescue stuff from specfile Mon Feb 10 2003 Karsten Hopp <karsten@redhat.de> 1.6.1-28 - patchlevel 320, to fix 'file changed' warning after :wq - don't overwrite systemwide config file (#82037) Wed Jan 29 2003 Karsten Hopp <karsten@redhat.de> 6.1-27 - patchlevel 311 - fix #78837, only install message catalog for selected language Tue Jan 28 2003 Karsten Hopp <karsten@redhat.de> 6.1.26 - patchlevel 302 - added epoch to automated changelog entry (specs.vim) - don't warn (vim-minimal) about not implemented functions Thu Jan 23 2003 Karsten Hopp <karsten@redhat.de> 6.1.25 - patchlevel 300 Wed Jan 22 2003 Tim Powers <timp@redhat.com> - rebuilt Fri Jan 10 2003 Karsten Hopp <karsten@redhat.de> 6.1.23 - patchlevel 287 Wed Jan 08 2003 Karsten Hopp <karsten@redhat.de> 6.1.22 - use Red Hat style for spec files Tue Jan 07 2003 Karsten Hopp <karsten@redhat.de> 6.1.21 - patchlevel 284
70 lines
2.1 KiB
VimL
70 lines
2.1 KiB
VimL
if v:lang =~ "^ko"
|
|
set fileencodings=euc-kr
|
|
set guifontset=-*-*-medium-r-normal--16-*-*-*-*-*-*-*
|
|
elseif v:lang =~ "^ja_JP"
|
|
set fileencodings=euc-jp
|
|
set guifontset=-misc-fixed-medium-r-normal--14-*-*-*-*-*-*-*
|
|
elseif v:lang =~ "^zh_TW"
|
|
set fileencodings=big5
|
|
set guifontset=-sony-fixed-medium-r-normal--16-150-75-75-c-80-iso8859-1,-taipei-fixed-medium-r-normal--16-150-75-75-c-160-big5-0
|
|
elseif v:lang =~ "^zh_CN"
|
|
set fileencodings=gb2312
|
|
set guifontset=*-r-*
|
|
endif
|
|
if v:lang =~ "utf8$" || v:lang =~ "UTF-8$"
|
|
set fileencodings=utf-8,latin1
|
|
endif
|
|
|
|
set nocompatible " Use Vim defaults (much better!)
|
|
set bs=2 " 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
|
|
|
|
" Only do this part when compiled with support for autocommands
|
|
if has("autocmd")
|
|
" In text files, always limit the width of text to 78 characters
|
|
autocmd BufRead *.txt set tw=78
|
|
" When editing a file, always jump to the last cursor position
|
|
autocmd BufReadPost *
|
|
\ if line("'\"") > 0 && line ("'\"") <= line("$") |
|
|
\ exe "normal g'\"" |
|
|
\ endif
|
|
endif
|
|
|
|
" Don't use Ex mode, use Q for formatting
|
|
map Q gq
|
|
|
|
" Switch syntax highlighting on, when the terminal has colors
|
|
" Also switch on highlighting the last used search pattern.
|
|
if &t_Co > 2 || has("gui_running")
|
|
syntax on
|
|
set hlsearch
|
|
endif
|
|
|
|
if &term=="xterm"
|
|
set t_Co=8
|
|
set t_Sb=^[4%dm
|
|
set t_Sf=^[3%dm
|
|
endif
|
|
|
|
" some extra commands for HTML editing
|
|
nmap ,mh wbgueyei<<ESC>ea></<ESC>pa><ESC>bba
|
|
nmap ,h1 _i<h1><ESC>A</h1><ESC>
|
|
nmap ,h2 _i<h2><ESC>A</h2><ESC>
|
|
nmap ,h3 _i<h3><ESC>A</h3><ESC>
|
|
nmap ,h4 _i<h4><ESC>A</h4><ESC>
|
|
nmap ,h5 _i<h5><ESC>A</h5><ESC>
|
|
nmap ,h6 _i<h6><ESC>A</h6><ESC>
|
|
nmap ,hb wbi<b><ESC>ea</b><ESC>bb
|
|
nmap ,he wbi<em><ESC>ea</em><ESC>bb
|
|
nmap ,hi wbi<i><ESC>ea</i><ESC>bb
|
|
nmap ,hu wbi<u><ESC>ea</i><ESC>bb
|
|
nmap ,hs wbi<strong><ESC>ea</strong><ESC>bb
|
|
nmap ,ht wbi<tt><ESC>ea</tt><ESC>bb
|
|
nmap ,hx wbF<df>f<df>
|
|
|