我可以:设置数字从我正在编辑的文件,但我怎么能让他们总是默认开启?


当前回答

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

set number

这样问题就解决了。

其他回答

将set number添加到主目录中的.vimrc文件中。 如果.vimrc文件不在您的主目录中,则创建一个 Vim .vimrc并在打开时添加您想要的命令。

这里有一个网站解释了vimrc以及如何使用它。

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

vi ~/.vimrc

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

set number

或者我们可以源~/。Vimrc或保存并退出:wq,现在未来的vi/vim会话将有编号:)

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

终端> su >密码> 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.