Git vim 编辑器配置
Git vim editor config
我在 windows 工作,我使用 vim 作为提交的默认编辑器。
我想配置 vim 以 Windows 文件格式 (CRLF)
保存提交
我该怎么办?
git 的 vim 配置在哪里?
git 提交消息插件是 ~/.vim/ftplugin/gitcommit.vim
。设置为:
setlocal fileformat=dos
见http://vimdoc.sourceforge.net/htmldoc/options.html#%27fileformat%27
我在 windows 工作,我使用 vim 作为提交的默认编辑器。 我想配置 vim 以 Windows 文件格式 (CRLF)
保存提交我该怎么办? git 的 vim 配置在哪里?
git 提交消息插件是 ~/.vim/ftplugin/gitcommit.vim
。设置为:
setlocal fileformat=dos
见http://vimdoc.sourceforge.net/htmldoc/options.html#%27fileformat%27