如何更改 macvim 中的默认缩进?
我正在学习配置 macvim。
现在我的制表符缩进是 4 个字符,我想将其更改为 2。我应该在 macvim 配置文件中添加什么?
有没有初学者指南可以帮助我学习配置 mac vim?
I am learning to configure the macvim.
Now my tab indent is 4 character, I want to change it to 2. What should I add to the macvim configure file?
Is there any beginner guide for me to learn configure mac vim?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 MacVim 中打开 $HOME/.vimrc 文件,
写入以下行,
然后保存。
Open your $HOME/.vimrc file in MacVim,
write the following lines,
and save.
正如 Kazuki Sakamoto 上面所说,您需要编辑 $HOME/.vimrc 文件。您还需要做的是确保您的 $HOME/.gvimrc 文件具有这些相同的设置。我将 janus 设置与 macvim 一起使用,让它工作的唯一方法是将这些行也添加到该文件中。将它们放在两个文件中应该确保无论您在终端中使用 vim 还是在 macvim 中,选项卡设置都是相同的。
As Kazuki Sakamoto said above, you need to edit your $HOME/.vimrc file. What you also need to do is make sure that your $HOME/.gvimrc file has these same settings. I use the janus setup with macvim and the only way I could get it to work was to add those lines to that file as well. Having them in both files should ensure that whether you're using vim in the terminal or macvim, the tab settings will be the same.