1. 程式人生 > >讓vi更易使用的配置

讓vi更易使用的配置

  • **

vi編輯器是Linux和Unix上最基本的文字編輯器,工作在字元模式下。由於不需要圖形介面,vi是效率很高的文字編輯器。儘管在Linux上也有很多圖形介面的編輯器可用,但vi在系統和伺服器管理中的功能是那些圖形編輯器所無法比擬的。所以為了更好的使用vi編輯器,可以對vi進行一些個性化的配置,方便我們程式設計開發使用。

**

vi配置檔案的本質就是shell指令碼語句的集合。

配置vi的步驟:

  • 首先使用命令 cd ~ 回到使用者家目錄下。
    -在這裡插入圖片描述

  • 再使用命令 vi .vimrc開啟vi的配置檔案。
    在這裡插入圖片描述

  • 以下程式碼是我自己的配置檔案程式碼,當然,你也可以根據自己的需要進行一些更改。

    "當建立.h .c .hpp .cpp .mk .sh等檔案時自動呼叫SetTitle 函式
         autocmd BufNewFile *.[ch],*.hpp,*.cpp,Makefile,*.mk,*.sh exec ":call SetTitle()"
         " 加入註釋 
          func SetComment()
             	call setline(1,"/*================================================================") 
             	call append(line("."),   "*   Copyright (C) ".strftime("%Y")." Sangfor Ltd. All rights reserved.")
             	call append(line(".")+1, "*   ") 
             	call append(line(".")+2, "*   檔名稱:".expand("%:t")) 
             	call append(line(".")+3, "*   創 建 者:duan")
             	call append(line(".")+4, "*   建立日期:".strftime("%Y年%m月%d日")) 
             	call append(line(".")+5, "*   描    述:") 
             	call append(line(".")+6, "*")
             	call append(line(".")+7, 
     
         "================================================================*/") 
             	call append(line(".")+8, "")
             	call append(line(".")+9, "")	
             endfunc
             " 加入shell,Makefile註釋
             func SetComment_sh()
             	call setline(3, "#================================================================") 
    
    
    
     call setline(4, "#   Copyright (C) ".strftime("%Y")." Sangfor Ltd. All rights reserved.")
     	call setline(5, "#   ") 
     	call setline(6, "#   檔名稱:".expand("%:t")) 
     call setline(7, "#   創 建 者:duan")
     
     call setline(8, "#   建立日期:".strftime("%Y年%m月%d日")) 
     	call setline(9, "#   描    述:") 
     	call setline(10, "#")
     	call setline(11, 
    
     "#=========================================================
     
         =======")
         	call setline(12, "")
         	call setline(13, "")
           
    
       endfunc 
         " 定義函式SetTitle,自動插入檔案頭 
         func SetTitle()
         	if &filetype == 'make' 
         		call setline(1,"") 
         		call setline(2,"")
         		call SetComment_sh()
    
    
     elseif &filetype == 'sh' 
     	call setline(1,"#!/system/bin/sh") 
     	call setline(2,"")
     	call SetComment_sh()
     	
     else
          call SetComment()
          if expand("%:e") == 'hpp' 
     	  call append(line(".")+10, "#ifndef _".toupper(expand("%:t:r"))."_H") 
     	  call append(line(".")+11, "#define _".toupper(expand("%:t:r"))."_H") 
     	  call append(line(".")+12, "#ifdef __cplusplus") 
     	  call append(line(".")+13, "extern \"C\"") 
     	  call append(line(".")+14, "{") 
     	  call append(line(".")+15, "#endif") 
     	  call append(line(".")+16, "") 
     	  call append(line(".")+17, "#ifdef __cplusplus") 
     	  call append(line(".")+18, "}") 
     	  call append(line(".")+19, "#endif") 
     	  call append(line(".")+20, "#endif //".toupper(expand("%:t:r"))."_H") 
    
          elseif expand("%:e") == 'h' 
       	call append(line(".")+10, "#pragma once") 
          elseif &filetype == 'c' 
       	call append(line(".")+10,"#include<stdio.h>") 
     	call append(line(".")+11,"#include<string.h>")
     	call append(line(".")+12,"#include<stdlib.h>")
     	call append(line(".")+13,"#include<math.h>")
     	call append(line(".")+14,"")
     	:16
          elseif &filetype == 'cpp' 
       	call append(line(".")+10, "#include \"".expand("%:t:r").".h\"") 
          endif
     endif
     endfunc
     set tabstop=4
     set softtabstop=4
     set shiftwidth=4
     
     "set autoindent
     set smartindent
     
     inoremap ' ''<ESC>i
     inoremap " ""<ESC>i
     inoremap ( ()<ESC>i
     inoremap [ []<ESC>i
     inoremap { {<CR>}<ESC>O
     set number