Vim行号-如何在默认情况下启用它们?

我可以在我正在编辑的文件中:set number,但我如何在默认情况下总是打开它们?

201962 次浏览

在你的主目录下的.vimrc文件中添加set number 如果.vimrc文件不在你的主目录下,创建一个

. vim .vimrc并在open中添加你想要的命令

这是一个网站解释了vimrc和如何使用它。

修改vi/vim中显示行号的默认设置。
< / p >

vi ~/.vimrc

然后在文件中添加如下一行:

set number

我们可以source ~/.vimrc或者通过:wq保存并退出,现在未来的vi/vim会话将有编号:)

在主目录中,你会发现一个名为“。vimrc”在这个文件中添加这个代码“设置ν”,保存并退出并打开新的vi文件,你会在其中找到行号。

终端> su > password > vim /etc/vimrc

点击这里,按第13行编辑:

set nu

点击这里并编辑为

我使用的是Debian 7 64位。

我的主文件夹中没有.vimrc文件。我创建了一个,并能够为vim设置用户默认值。

然而,对于Debian 7,另一种方法是编辑/etc/vim/vimrc

下面是该文件中的注释块:

" All system-wide defaults are set in $VIMRUNTIME/debian.vim (usually just
" /usr/share/vim/vimcurrent/debian.vim) and sourced by the call to :runtime
" you can find below.  If you wish to change any of those settings, you should
" do it in this file (/etc/vim/vimrc), since debian.vim will be overwritten
" everytime an upgrade of the vim packages is performed.  It is recommended to
" make changes after sourcing debian.vim since it alters the value of the
" 'compatible' option.

我的主目录中没有.vimrc文件。我创建了一个,添加了这一行:

set number

这样问题就解决了。

如果不想添加/编辑.vimrc,可以从

vi "+set number" /path/to/file
< p > <代码> 设置ν 集人工智能 设置制表符= 4 将ls = 2 设置autoindent < /代码> < / p >

在.vimrc文件中添加上述代码。如果.vimrc文件不存在,请在您的主目录(/home/用户名)中创建。

使Vim显示行号

set ai ->使Vim启用自动缩进

set ls=2 ->使Vim显示状态行

这使Vim设置的制表符长度为4个空格(默认为8)

enter image description here

enter image description here

文件名也会显示出来。

在你的~/.vimrc文件中添加任何你想要的默认命令(在Windows系统中名为_vimrc)