博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
我的vimrc和gvimrc配置
阅读量:4127 次
发布时间:2019-05-25

本文共 3465 字,大约阅读时间需要 11 分钟。

vimrc:

" 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 compatibleset tags=tags;set autochdirhi Normal ctermbg=Black  ctermfg=Whiteset cursorline  "hi CursorLine cterm=NONE ctermbg=0 ctermfg=Green"color  murphyset numberset cindentset autoindentset rulerset tabstop=8" Vim5 and later versions support syntax highlighting. Uncommenting the next" line enables syntax highlighting by default.if has("syntax")  syntax onendif" 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)" Source a global configuration file if availableif filereadable("/etc/vim/vimrc.local")  source /etc/vim/vimrc.localendiflet g:neocomplcache_enable_at_startup = 1

gvimrc:

if has("gui_gtk2")set guifont=DejaVu\ Sans\ Mono\ 11                                  elseif has("gui_macvim")set guifont=DejaVu_Sans_Mono:h11elseif has("gui_win32")set guifont=DejaVu_Sans_Mono:h11end" Make external commands work through a pipe instead of a pseudo-tty"set noguipty"set guifont=DejaVu_Sans_mono:h11hi Normal guibg=White guifg=Black  hi "LineNr guibg=#003366 guifg=#99ccff ctermbg=7777 ctermfg=blue  set cursorline  hi CursorLine cterm=NONE ctermbg=Black ctermfg=white" You can also specify a different font, overriding the default font"if has('gui_gtk2')"  set guifont=Bitstream\ Vera\ Sans\ Mono\ 12"else"  set guifont=-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1"endif" If you want to run gvim with a dark background, try using a different" colorscheme or running 'gvim -reverse'." http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/ has examples and" downloads for the colorschemes on vim.org" Source a global configuration file if availableif filereadable("/etc/vim/gvimrc.local")  source /etc/vim/gvimrc.localendif

转载地址:http://zguvi.baihongyu.com/

你可能感兴趣的文章
2019年哪些外快收入可达到2万以上?
查看>>
【JavaScript 教程】标准库—Date 对象
查看>>
前阿里手淘前端负责人@winter:前端人如何保持竞争力?
查看>>
【JavaScript 教程】面向对象编程——实例对象与 new 命令
查看>>
我在网易做了6年前端,想给求职者4条建议
查看>>
SQL1015N The database is in an inconsistent state. SQLSTATE=55025
查看>>
RQP-DEF-0177
查看>>
Linux查看mac地址
查看>>
Linux修改ip
查看>>
MySQL字段类型的选择与MySQL的查询效率
查看>>
Java的Properties配置文件用法【续】
查看>>
JAVA操作properties文件的代码实例
查看>>
IPS开发手记【一】
查看>>
Java通用字符处理类
查看>>
文件上传时生成“日期+随机数”式文件名前缀的Java代码
查看>>
Java代码检查工具Checkstyle常见输出结果
查看>>
北京十大情人分手圣地
查看>>
Android自动关机代码
查看>>
Android中启动其他Activity并返回结果
查看>>
2009年33所高校被暂停或被限制招生
查看>>