美文网首页vim使用
vim 之自动缩进(smartindent) tab 空格数设置

vim 之自动缩进(smartindent) tab 空格数设置

作者: 星chen | 来源:发表于2018-09-02 18:24 被阅读399次
  1. 打开设置文件:

[html] view plain copy

sudo vim /etc/vim/vimrc
或 首先,在命令中输入vim ~/.vimrc
  1. 添加以下代码:

[plain] view plain copy

set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
set softtabstop=4

相关文章

网友评论

    本文标题:vim 之自动缩进(smartindent) tab 空格数设置

    本文链接:https://www.haomeiwen.com/subject/wiwmwftx.html