vim基本配置
阿新 • • 發佈:2018-11-29
備份 ctrl nowrap star tor nor 史記 顯示 語法高亮
"==================================
""" Vim基本配置
"===================================
"
""關閉vi的一致性模式 避免以前版本的一些Bug和局限
set nocompatible
"配置backspace鍵工作方式
"set backspace=indent,eol,start
"
""顯示行號
set number
"設置在編輯過程中右下角顯示光標的行列信息
"set ruler
""當一行文字很長時取消換行
"set nowrap
"
""在狀態欄顯示正在輸入的命令
set showcmd
"設置歷史記錄條數
"set history=1000
"
""設置取消備份 禁止臨時文件生成
set nobackup
set noswapfile
"突出現實當前行列
"set cursorline
""set cursorcolumn
"設置匹配模式 類似當輸入一個左括號時會匹配相應的那個右括號
"set showmatch
"
""設置C/C++方式自動對齊
set autoindent
set cindent
"開啟語法高亮功能
"syntax enable
"syntax on
"
""指定配色方案為256色
set t_Co=256
"設置搜索時忽略大小寫
"set ignorecase
"
""設置在Vim中可以使用鼠標 防止在Linux終端下無法拷貝
set mouse=a
"設置Tab寬度
"set tabstop=4
""設置自動對齊空格數
set shiftwidth=4
"設置按退格鍵時可以一次刪除4個空格
"set softtabstop=4
""設置按退格鍵時可以一次刪除4個空格
set smarttab
"將Tab鍵自動轉換成空格 真正需要Tab鍵時使用[Ctrl + V + Tab]
"set expandtab
"
""設置編碼方式
set encoding=utf-8
"自動判斷編碼時 依次嘗試一下編碼
"set fileencodings=ucs-bom,utf-8,cp936,gb18030,big5,euc-jp,euc-kr,latin1
"
""設置換行符為unix
set ff=unix
"檢測文件類型
"filetype on
""針對不同的文件采用不同的縮進方式
filetype indent on
"允許插件
"filetype plugin on
""啟動智能補全
filetype plugin indent on
vim基本配置