如何更改 macvim 中的默认缩进?

发布于 2024-10-18 15:47:07 字数 113 浏览 4 评论 0原文

我正在学习配置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜巴黎 2024-10-25 15:47:07

在 MacVim 中打开 $HOME/.vimrc 文件,

:edit $MYVIMRC

写入以下行,

set tabstop=2
set shiftwidth=2

然后保存。

:wq

Open your $HOME/.vimrc file in MacVim,

:edit $MYVIMRC

write the following lines,

set tabstop=2
set shiftwidth=2

and save.

:wq
婴鹅 2024-10-25 15:47:07

正如 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文