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


当前回答

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

其他回答

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

set number

这样问题就解决了。

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

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

使Vim显示行号

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

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

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

文件名也会显示出来。

我使用的是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,可以从

vi "+set number" /path/to/file

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