目录

$ cat ~/.vimrc
syntax on

UTF-8 編碼

Vim - Encoding

" 啟動後是使用 utf-8 編碼
set encoding=utf-8
 
" 新開的檔案預設是 utf-8 編碼
set fileencoding=utf-8
 
" 所有可能的檔案編碼
set fileencodings=utf-8,big5,euc-jp,gbk,euc-kr,utf-bom,iso8859-1
 
" 設定輸出到 terminal 的編碼
set termencoding=utf-8
 
" 將 unicode 中不確定的字符表示成雙字符,在 unicode 下才有用
set ambiwidth=double

ctags & cscope

$ sudo apt-get install ctags
$ cd qemu-0.13.0/
$ ctags -R

外掛

外部連結