將 tab 設為4個空白的大小
set tabstop=4
搜尋時不要 highlight 搜尋的字串
set nohlsearch
不要儲存備份檔
set nobackup
使用滑鼠做字串複制時不要自動縮排
set paste
在狀態列顯示游標所在處之行列狀態
set ruler
使用空白取代 tab (如需要 tab 則按 Ctrl-V 再按 tab 鍵即可)
set expandtab
開啟語法顏色功能
syntax on
開啟 vim 時會回到上次開啟時所在的位置
if has("autocmd") autocmd BufRead *.txt set tw=78 autocmd BufReadPost * \ if line("'\"") > 0 && line ("'\"") <= line("$") | \ exe "normal g'\"" | \ endif endif如果要將檔案內的 tab 換成空白,則在開啟檔案後輸入以下指令
:retab
沒有留言:
張貼留言