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


当前回答

我使用的是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.

其他回答

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

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

终端> su >密码> vim /etc/vimrc

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

set nu

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

我使用的是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.

设置ν 集人工智能 设置制表符= 4 将ls = 2 设置autoindent

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

使Vim显示行号

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

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

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

文件名也会显示出来。