日期:2014-05-16  浏览次数:20892 次

Vim语法高亮设置不成功!
" All system-wide defaults are set in $VIMRUNTIME/debian.vim (usually just
" /usr/share/vim/vimcurrent/debian.vim) and sourced by the call to :runtime
" you can find below. If you wish to change any of those settings, you should
" do it in this file (/etc/vim/vimrc), since debian.vim will be overwritten
" everytime an upgrade of the vim packages is performed. It is recommended to
" make changes after sourcing debian.vim since it alters the value of the
" 'compatible' option.

" This line should not be removed as it ensures that various options are
" properly set to work with the Vim-related packages available in Debian.
runtime! debian.vim

" Uncomment the next line to make Vim more Vi-compatible
" NOTE: debian.vim sets 'nocompatible'. Setting 'compatible' changes numerous
" options, so any other options should be set AFTER setting 'compatible'.
"set compatible

" Vim5 and later versions support syntax highlighting. Uncommenting the
" following enables syntax highlighting by default.
if has("syntax")
  syntax on
endif

" 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

" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
"if has("autocmd")
" filetype plugin indent on
"endif

" The following are commented out as they cause vim to behave a lot
" differently from regular Vi. They are highly recommended though.
"set showcmd " Show (partial) command in status line.
"set showmatch " Show matching brackets.
"set ignorecase " Do case insensitive matching
"set smartcase " Do smart case matching
"set incsearch " Incremental search
"set autowrite " Automatically save before commands like :next and :make
"set hidden " Hide buffers when they are abandoned
"set mouse=a " Enable mouse usage (all modes)
set tabstop=5
set softtabstop=5
set shiftwidth=5
set autoindent
set nu
set mouse=a


syntax on

if&term=="xterm"
  set t_Co=8
  set t_Sb=^[[4%dm
  set t_Sf=^[[3%dm
endif

" Source a global configuration file if available
if filereadable("/etc/vim/vimrc.local")
  source /etc/vim/vimrc.local
endif
===============================================================

这是我设置的语法高亮显示不出来啊,上google查了几个小时还是不行啊,挺喜欢Vim的。是不是要下载插件才能显示语法高亮啊?Linxu下高手请指教一下!

------解决方案--------------------
你是修改的/etc/vimrc吗 

http://blog.chinaunix.net/u/22968/showart_432269.html
------解决方案--------------------
是需要有一些语法配置的才行。你看一下这个目录里/usr/share/vim/vim72/syntax
是语法的插件。

另外,vi没有语法加亮,只有vim有。
------解决方案--------------------
探讨
是需要有一些语法配置的才行。你看一下这个目录里/usr/share/vim/vim72/syntax
是语法的插件。

另外,vi没有语法加亮,只有vim有。

------解决方案--------------------
你用的什么系统啊?fedora默认安装的是vi,必须自己安装vim。。。