.vimrc文件的配置

xiaoxiao2024-11-30  13

在终端下使用vim进行编辑时,默认情况下,编辑的界面上是没有显示行号、语法高亮度显示、智能缩进等功能的。为了更好的在vim下进行工作,需要手动设置一个配置文件:.vimrc。 在启动vim时,当前用户根目录下的.vimrc文件会被自动读取,该文件可以包含一些设置甚至脚本,所以,一般情况下把.vimrc文件创建在当前用户的根目录下比较方便,即创建的命令为: $vi ~/.vimrc 设置完后 $:x 或者 $wq 进行保存退出即可。 下面给出一个例子,其中列出了经常用到的设置,详细的设置信息请参照参考资料: 去掉讨厌的有关vi一致性模式,避免以前版本的一些bug和局限 set nocompatible 显示行号 set nummber 检测文件的类型 filetype on 记录历史的行数 set history=1000 背景使用黑色 set background=dark 语法高亮度显示 syntax on 下面两行在进行编写代码时,在格式对起上很有用; 第一行,vim使用自动对起,也就是把当前行的对起格式应用到下一行; set autoindent第二行,依据上面的对起格式,智能的选择对起方式,对于类似C语言编 set smartindent 第一行设置tab键为4个空格,第二行设置当行之间交错时使用4个空格 set tabstop=4set shiftwidth=4 设置匹配模式,类似当输入一个左括号时会匹配相应的那个右括号 set showmatch 去除vim的GUI版本中的toolbar set guioptions-=T 当vim进行编辑时,如果命令错误,会发出一个响声,该设置去掉响声 set vb t_vb= 在编辑过程中,在右下角显示光标位置的状态行 set ruler 默认情况下,寻找匹配是高亮度显示的,该设置关闭高亮显示 set nohls 查询时非常方便,如要查找book单词,当输入到/b时,会自动找到第一个b开头的单词,当输入到/bo时,会自动找到第一个bo开头的单词,依次类推,进行查找时,使用此设置会快速找到答案,当你找要匹配的单词时,别忘记回车 set incsearch 修改一个文件后,自动进行备份,备份的文件名为原文件名加“~“后缀 if has(“vms”) set nobackupelse set backupendif 如果去除注释后,一个完整的.vimrc配置信息如下所示: set nocompatibleset nummberfiletype on set history=1000 set background=dark syntax on set autoindentset smartindentset tabstop=4set shiftwidth=4set showmatchset guioptions-=Tset vb t_vb=set rulerset nohlsset incsearchif has(“vms” set nobackupelse set backupendif 如果设置完后,发现功能没有起作用,检查一下系统下是否安装了vim-enhanced包,查询命令为: $rpm –q vim-enhanced example示范的样式: [quote]" An example for a gvimrc file. " The commands in this are executed when the GUI is started. " " Maintainer: Bram Moolenaar <Bram@vim.org> " Last change: 2001 Sep 02 " " To use it, copy it to " for Unix and OS/2: ~/.gvimrc " for Amiga: s:.gvimrc " for MS-DOS and Win32: $VIM\_gvimrc " for OpenVMS: sys$login:.gvimrc " Make external commands work through a pipe instead of a pseudo-tty "set noguipty " set the X11 font to use " set guifont=-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1 set ch=2 " Make command line two lines high set mousehide " Hide the mouse when typing text " Make shift-insert work like in Xterm map <S-Insert> <MiddleMouse> map! <S-Insert> <MiddleMouse> " Only do this for Vim version 5.0 and later. if version >= 500 " I like highlighting strings inside C comments let c_comment_strings=1 " Switch on syntax highlighting if it wasn't on yet. if !exists("syntax_on") syntax on endif " Switch on search pattern highlighting. set hlsearch " For Win32 version, have "K" lookup the keyword in a help file "if has("win32") " let winhelpfile='windows.hlp' " map K :execute "!start winhlp32 -k <cword> " . winhelpfile <CR> "endif " Set nice colors " background for normal text is light grey " Text below the last line is darker grey " Cursor is green, Cyan when ":lmap" mappings are active " Constants are not underlined but have a slightly lighter background highlight Normal guibg=grey90 highlight Cursor guibg=Green guifg=NONE highlight lCursor guibg=Cyan guifg=NONE highlight NonText guibg=grey80 highlight Constant gui=NONE guibg=grey95 highlight Special gui=NONE guibg=grey95 endif[/quote] 参考资料: 1.vim的完全翻译版在下面连接处可以找到 http://vimcdoc.sourceforge.net/ 可以下栽其中的一个PDF版本,里面介绍的很详细,强烈推荐 2.更详细的vim信息可以访问: http://www.vim.org/ 3.一个带有英文注释的.vimrc例子 http://www.vi-improved.org/vimrc.php
转载请注明原文地址: https://www.6miu.com/read-5020470.html

最新回复(0)