vim/gvim: Install Gvim

來源:互聯網
上載者:User

ubuntu 10.10 安裝了 Gvim,分享一下。


開始下載安裝


sudo apt-get update(更新一下源,可選項,呵呵)


sudo apt-get install vim-gnome


安裝 ok 之後,為 Gvim 配置菜單(兩種方式)


方式 1 : sudo vim /usr/share/applications/gvim.desktop


方式 2 :sudo gedit /usr/share/applications/gvim.desktop


如果你以前使用過 vim 就使用方式 1,沒有使用過就用 方式 2。


在開啟的檔案裡面,你會看到很多內容,在檔案末尾添加


[Desktop Entry]
Name=Gvim
Comment[zh_CN]=GvimEditor
Exec=gvim
Icon=/usr/share/pixmaps/gnome-word.png
Terminal=false
X-MultipleArgs=false
Type=Application
Categories=Application;Development;
Encoding=UTF-8
StartupNotify=true


這樣,在 Application/Programing 下面就會有 Gvim了。


當然,你可以在終端直接敲 gvim 也可以啟動它。


簡單配置一下 Gvim


在你的目錄(/home/username)下面執行:


vim .vimrc


寫入下面內容儲存即可:


"設定行號

set number

"設定字型
set guifont=Comic\ Sans\ MS\ 12

"不自動備份
set nobackup
"設定顏色
colorscheme desert
" 允許退格鍵刪除和tab操作  
set smartindent  
set smarttab  
set expandtab  
set tabstop=4  
set softtabstop=4  
set shiftwidth=4  
set backspace=2
set textwidth=79
" 啟用滑鼠  
set mouse=a
" 設定編碼自動識別, 中文引號顯示  
set fileencodings=utf-8,gbk  
set ambiwidth=double

"文法高亮
syntax on
"程式碼摺疊功能功能
"set foldmethod=manual


效果如下:




更多色彩配置:http://code.google.com/p/vimcolorschemetest/







相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.