博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gvim编辑器_vimrc文件
阅读量:5227 次
发布时间:2019-06-14

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

set nocompatible

source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin

set diffexpr=MyDiff()

function MyDiff()
let opt = '-a --binary '
let g:snip_set_textmate_cp=1
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
let arg1 = v:fname_in
if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
let arg2 = v:fname_new
if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
let arg3 = v:fname_out
if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
let eq = ''
if $VIMRUNTIME =~ ' '
if &sh =~ '\<cmd'
let cmd = '""' . $VIMRUNTIME . '\diff"'
let eq = '"'
else
let cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'
endif
else
let cmd = $VIMRUNTIME . '\diff'
endif
silent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq
endfunction

set cursorline " 当前光标所在行会有阴影

"打开语法高亮

syntax on

"tab转空格的一坨设置

set shiftwidth=4
set sts=4
set tabstop=4
set expandtab

"自动缩进设置

set cindent
set smartindent
set incsearch
set autoindent

"显示行号

set nu

" 不要备份

set nobackup

"设置colormode

colorscheme desert

" Monaco字体

set guifont=Courier_New:h12

" 更新时间200毫秒,针对taglist插件
set ut=200

"Show matching bracets

set showmatch

"Get out of VI's compatible mode

set nocompatible

"Set to auto read when a file is changed from the outside

set autoread

"Enable filetype plugin

filetype on
filetype plugin on
filetype indent on

"设置搜索结果高亮显示

set hlsearch

"设置记录的历史操作列表

set history=50

"设置折叠

set foldcolumn=2
set foldmethod=indent
set foldlevel=3

"Set mapleader
let mapleader = '\' " leader用反斜杠\
map <leader><leader> \be " 双反斜杠\\即可打开bufexplorer
map C-Enter C-Tab " Ctrl+Enter也可以切换buffer

"Taglist插件的一坨设置

let g:Tlist_Use_Right_Window=1
"let g:Tlist_Auto_Open=1
let g:Tlist_Show_One_File=1
let g:Tlist_Compact_Format=1
let g:Tlist_Enable_Fold_Column=0
let Tlist_Ctags_Cmd="'d:\Program Files\vim\vim71\plugin\ctags\ctags.exe'"
nnoremap <F12> :TlistToggle<CR>

"Calendar map

nnoremap <F11> :Calendar<CR>

"load project plugin

nnoremap <F10> :Project<CR>

"gvim打开以后最大化

au GUIEnter * simalt ~x

set encoding=utf-8

set fileencodings=utf-8,chinese,latin-1
if has("win32")
set fileencoding=chinese
else
set fileencoding=utf-8
endif
"解决菜单乱码
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim
"解决consle输出乱码
language messages zh_CN.utf-8

转载于:https://www.cnblogs.com/jiaoyiping/p/3432493.html

你可能感兴趣的文章
LeetCode - 21. Merge two sorted lists
查看>>
LAMP--源码MySQL集群版搭建
查看>>
C# partial 局部类型
查看>>
实践作业1 第三天
查看>>
虚拟机下安装cad2006和南方cass7.0
查看>>
Oracle tablespace size sql
查看>>
理解爬虫原理
查看>>
repeater 模拟器 in winform
查看>>
Leetcode207. Course Schedule课程表
查看>>
学php之翻译wordpress(1)
查看>>
oracle函数 to_single_byte(c1)
查看>>
SuperSocket内置的命令行协议
查看>>
java基本数据类型
查看>>
java面向接口编程之适配器模式
查看>>
testparm - 检查smb.conf配置文件的内部正确性
查看>>
iOS开发UI篇—UITabBarController简单介绍
查看>>
MAC OX 配置JDK环境变量
查看>>
数据结构与算法自学系列之动态规划(一)
查看>>
《团队-----吃货之家------项目总结》
查看>>
在Android迷你广告上添加浮动的关闭按钮
查看>>