1. 程式人生 > >vim格式化html程式碼

vim格式化html程式碼

把檔案型別設為html,然後全選程式碼執行"="號

:filetype indent on
:set filetype=html   #set ft
:set smartindent     #set si

常用vim預設設定,在~/.vimrc檔案中新增如下程式碼
set nobackup
set nowritebackup
set noswapfile
set lines=40
set columns=80
set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=4
set smarttab
set hlsearch
filetype indent on
filetype on
filetype plugin on