码迷,mamicode.com
首页 > 系统相关 > 详细

Mac Vim 如何设置高亮

时间:2015-12-08 23:58:46      阅读:388      评论:0      收藏:0      [点我收藏+]

标签:

首先进入如下目录
cd /usr/share/vim
然后打开vimrc
sudo vim vimrc

 在vimrc中的“set backspace=2”这行下插入如下代码:

set ai                  " auto indenting
set history=100         " keep 100 lines of history
set ruler               " show the cursor position
syntax on               " syntax highlighting
set hlsearch            " highlight the last searched term
filetype plugin on      " use the file type plugins

" When editing a file, always jump to the last cursor position
autocmd BufReadPost *
\ if ! exists("g:leave_my_cursor_position_alone") |
\ if line("‘\"") > 0 && line ("‘\"") <= line("$") |
\ exe "normal g‘\"" |
\ endif |
\ endif

 然后退出vim 再开一个,颜色亮起来了

Mac Vim 如何设置高亮

标签:

原文地址:http://www.cnblogs.com/gslyyq/p/5031362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!