我可以:设置数字从我正在编辑的文件,但我怎么能让他们总是默认开启?
当前回答
我使用的是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)
文件名也会显示出来。
推荐文章
- 使用vimdiff查看所有' git diff '
- 禁止在vim中创建交换文件
- NERDTree重载新文件
- 在Vim中,我想返回一个词。w的反义词
- 在tmux模式中丢失vim配色方案
- 在VIM中删除光标后面或周围的单词
- 如何在vi文本编辑器中获得文件的sudo访问权限?
- 我如何可以删除在VIM所有文本从当前行文件结束?
- 如何在vim中剪切一整行并粘贴它?
- /etc/apt/sources.E212:无法打开文件写入
- 向左/向右移动窗口?
- 如何使Vim不突出显示所搜索的内容?
- 哪些Vim命令可以用来引用/取消引用单词?
- 如何从文件跳转回NERDTree在选项卡?
- 如何在Vim中选择括号(或引号或…)?