colorsheme evening
"
爲註釋符號代碼:set guioptions-=m
python
注意vim
-=
先後不要加空格,下方的 =
先後也不要加set guioptions-=T
set number
set nu
set fofttabstop=4 set shiftwidth=4
set tabstop=4
set expandtab
syntax on
set guifont=Consolas:h16
set guifont=consolas\ 16
set guifont=Consolas:h16,Courier_New:h14
set guifont=*
autocmd BufEnter *.txt set guifont=Arial:h14
set guifont=Consolas:h16:cGB2312:qDRAFT
set encoding=utf-8
map <F5> :!python %
source $VIMRUNTIME/delmemu.vim source $VIMRUNTIME/menu.vim
molokai
安裝目錄\vim81\colos
下新建文本、粘貼 Code、保存爲 molokai.vim
colorscheme molokai
" 1. 設置配色方案 " colorscheme evening colorscheme molokai " 2.1 隱藏菜單欄 set guioptions-=m " 2.2 隱藏工具欄 set guioptions-=T " 3. 顯示行號 set number " 4. 統一縮進數爲 4 set softtabstop=4 set shiftwidth=4 " 5. 設置 Tab 鍵爲 4 個空格 set tabstop=4 " 6. 讓空格代替 Tab set expandtab " 7. 啓動語法高亮 syntax on " 8. 設置字體 set guifont=Consolas:h16 " 9. 設置編碼格式 set encoding=utf-8 " 10. 設置快速運行快捷鍵 map <F5> :!python % " 11. 備用,防止亂碼 source $VIMRUNTIME/delmenu.vim source $VIMRUNTIME/menu.vim " 下面是原來的 Code