win gvim

    set number  
    set guifont=courier_new:h14
    set backspace=eol,indent,start  
    set history=10000  
    set autoindent  
    set smartindent  
    set tabstop=4
    set shiftwidth=4
    set expandtab  
    set showmatch  
    set guifont=monaco:h10  
    "set guifont=Consolas:h11  
    colorscheme evening  
    "colorscheme evening  
    set nocp  
    filetype plugin indent on  

    imap [[ {<cr>}<c-o>O  
    map <F4> :call CR()<CR>  
    func! CR()  
    exec "!g++ -O2 -g  % -o %<"  
    endfunc  

    map<F5> :call E()<CR>  
    func! E()  
    exec "! %<"  
    endfunc  



    filetype on  
    syntax on  
language messages zh_CN.utf-8
" vim7.1在windows下的編碼設置。By Huadong.Liu
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set encoding=utf-8
set fileencodings=utf-8,chinese,latin-1
if has("win32")
set fileencoding=chinese
else
set fileencoding=utf-8
endif
"解決菜單亂碼
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim
"解決consle輸出亂碼
language messages zh_CN.utf-8

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章