一、将 vim 添加至右键
-
进入安装目录找到
vim91\install.exe
管理员权限执行Install will do for you:1 Install .bat files to use Vim at the command line:2 Overwrite C:\Windows\vim.bat3 Overwrite C:\Windows\gvim.bat4 Overwrite C:\Windows\evim.bat5 Overwrite C:\Windows\view.bat6 Overwrite C:\Windows\gview.bat7 Overwrite C:\Windows\vimdiff.bat8 Overwrite C:\Windows\gvimdiff.bat 10 Do NOT change startup file D:\vim\_vimrc 14 Install an entry for Vim in the popup menu for the rightmouse button so that you can edit any file with Vim 15 Add Vim to the "Open With..." list in the popup menu for the rightmouse button so that you can edit any file with Vim 16 Add Vim to the Start menu 17 Create a desktop icon for gVim 18 Create a desktop icon for gVim Easy 19 Create a desktop icon for gVim Read-only 20 Do NOT create plugin directories To change an item, enter its numberEnter item number, h (help), d (do it) or q (quit):d 14
-
这里我们选
14 Install an entry for Vim in the popup menu for the right
将vim添加至右键 -
执行之后会生成桌面图标,桌面图标可以删除
二、默认配置调整
-
进入安装目录找到
_vimrc
文件编辑,在source $VIMRUNTIME/vimrc_example.vim
下添加 -
以下配置主要实现的功能:
1、设置字体 Consolas 字体大小 14
2、设置配色方案
3、设置关闭自动备份,编辑文件不自动生成备份文件
4、设置 Ctrl+C 和 Ctrl+V 可直接复制和粘贴
5、设置 Ctrl++ Ctrl± 和 Ctrl+滚轮放大缩小
" 启用鼠标支持,允许使用滚轮
set mouse=a" 设置字体为 Consolas,大小为 14
set guifont=Consolas:h14" 设置配色方案为 koehler
colorscheme koehler" 禁用备份文件
set nobackup " 不创建备份文件
set noundofile " 不生成撤销文件
set nowritebackup " 不在写入时创建备份文件" 设置 Ctrl+C 和 Ctrl+V 为复制和粘贴到剪贴板
vnoremap <C-C> "+y
nnoremap <C-V> "+p" 监听鼠标滚轮事件,向前滚动放大字体,向后滚动缩小字体
" 鼠标滚轮向前事件 (放大字体)
autocmd FocusGained * nnoremap <C-ScrollWheelUp> :call AdjustFontSize(1)<CR>
" 鼠标滚轮向后事件 (缩小字体)
autocmd FocusGained * nnoremap <C-ScrollWheelDown> :call AdjustFontSize(-1)<CR>
" 设置快捷键 Ctrl + = 放大字体
nnoremap <C-=> :let &guifont = substitute(&guifont, '\d\+', '\=eval(submatch(0)+1)', '')<CR>
" 设置快捷键 Ctrl + - 缩小字体
nnoremap <C-_> :let &guifont = substitute(&guifont, '\d\+', '\=eval(submatch(0)-1)', '')<CR>" 调整字体大小的函数
function! AdjustFontSize(delta)let current_size = matchstr(&guifont, '\d\+')let new_size = eval(current_size) + a:deltalet &guifont = substitute(&guifont, current_size, new_size, '')
endfunction
三、右键菜单 还原以前版本(V)
和 使用 Vim 编辑(V)
冲突
删除右键菜单还原以前版本(V)
注册表删除以下项
HKEY_CLASSES_ROOT\AllFilesystemObjects\ShellEx\ContextMenuHandlers\{596AB062-B4D2-4215-9F74-E9109B0A8153}
我试过禁用是不可以的,只能删除,如果禁用 还原以前版本(V)
的话,原本还原以前版本(V)
的位置会在出现一个使用 Vim 编辑(V)
,这样当你使用 右键 + V
的时候还是会冲突