2021-05-12 14:32:11
Vim編輯器設定修改
剛上手的Vim,黑底白字,看起來笨死了,於是一頓狂找,終於找到了設定方法。
設定當然要去etc目錄下。
cd /etc/vim
ls -l //找到vimrc檔案
sudo vim vimrc //注意要用root身份才能修改
" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
"syntax on
//取消註釋可開預設的啟語法高亮
" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
"set background=dark
//如果背景色是黑色,並開啟了語法高亮,則取消註釋
" Uncomment the following to have Vim jump to the last position when
" reopening a file
"if has("autocmd")
" au BufReadPost * if line("'"") > 1 && line("'"") <= line("$") | exe "normal! g'"" | endif
"endif//取消註釋來支援vim開啟檔案時,游標跳到上次編輯位置
" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
"if has("autocmd")
" filetype plugin indent on
"endif//取消註釋讓vim執行自動縮排
比如最後一項,去掉前面的",就可以了。
" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
if has("autocmd")
filetype plugin indent on
endif
最後,vim就成這個樣子了。
當然還可以用一些外掛。
更多Vim相關教學見以下內容:
Vim 8.0 釋出 http://www.linuxidc.com/Linux/2016-09/135178.htm
Vim學習指南 http://www.linuxidc.com/Linux/2013-08/89096.htm
Vim編輯器設定 http://www.linuxidc.com/Linux/2016-09/135460.htm
Vim編輯器使用 http://www.linuxidc.com/Linux/2016-09/135043.htm
快速學會 Vi編輯器 http://www.linuxidc.com/Linux/2013-08/88586.htm
強大的Vim 編輯器 http://www.linuxidc.com/Linux/2013-07/87544.htm
Linux文字編輯器Vim的一般用法 http://www.linuxidc.com/Linux/2016-11/137263.htm
把Vim打造成優秀的C++ IDE http://www.linuxidc.com/Linux/2016-06/132262.htm
Ubuntu 14.04升級Vim7.4到8.0 http://www.linuxidc.com/Linux/2016-11/136816.htm
Vim安裝youcompleteme自動補全外掛 http://www.linuxidc.com/Linux/2016-11/137665.htm
本文永久更新連結地址:http://www.linuxidc.com/Linux/2016-12/138177.htm
相關文章