vim配置文件问题 vimrc
答案:4 悬赏:10 手机版
解决时间 2021-01-29 23:41
- 提问者网友:末路
- 2021-01-29 05:55
vim配置文件问题 vimrc
最佳答案
- 五星知识达人网友:过活
- 2021-01-29 06:46
vimrc是vim的配置文件,修改它可以启动一些的效果。
配置文件当然要去etc目录去咯!
cd etc/vim
ls -l
这个时候你就会发现vimrc 文件了,现在以root身份进入并修改。
sudo vim vimrc
再按i,进入插入模式,开始修改:
你可能会看到以下内容。
" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
"syntax on
//取消注释可开默认的启语法高亮
" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
"set background=dark
//如果背景色是黑色,并开启了语法高亮,则取消注释
" Uncomment the following to have Vim jump to the last position when
" reopening a file
"if has("autocmd")
" au BufReadPost * if line("'"") > 1 && line("'"") <= line("$") | exe "normal! g'"" | endif
"endif
//取消注释来支持vim打开文件时,光标跳到上次编辑位置
" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
"if has("autocmd")
" filetype plugin indent on
"endif
//取消注释让vim执行自动缩进
根据提示,取消相应的注释,就可以开启某个功能了。
比如你要让vim自动缩进,就要改为:
" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
if has("autocmd")
filetype plugin indent on
endif
然后保存退出 : wq,完工!
配置文件当然要去etc目录去咯!
cd etc/vim
ls -l
这个时候你就会发现vimrc 文件了,现在以root身份进入并修改。
sudo vim vimrc
再按i,进入插入模式,开始修改:
你可能会看到以下内容。
" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
"syntax on
//取消注释可开默认的启语法高亮
" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
"set background=dark
//如果背景色是黑色,并开启了语法高亮,则取消注释
" Uncomment the following to have Vim jump to the last position when
" reopening a file
"if has("autocmd")
" au BufReadPost * if line("'"") > 1 && line("'"") <= line("$") | exe "normal! g'"" | endif
"endif
//取消注释来支持vim打开文件时,光标跳到上次编辑位置
" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
"if has("autocmd")
" filetype plugin indent on
"endif
//取消注释让vim执行自动缩进
根据提示,取消相应的注释,就可以开启某个功能了。
比如你要让vim自动缩进,就要改为:
" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
if has("autocmd")
filetype plugin indent on
endif
然后保存退出 : wq,完工!
全部回答
- 1楼网友:千杯敬自由
- 2021-01-29 10:06
.vimrc文件在linux下是隐藏文件。ctrl+h可以显示隐藏文件。
直接百度下载一个放在你的用户名的文件夹下面就可以了
直接百度下载一个放在你的用户名的文件夹下面就可以了
- 2楼网友:鱼芗
- 2021-01-29 08:46
NO,直接使用命令:cp /usr/share/vim/vimXX/vimrc_example.vim ~/.vimrc
注意:其中vimXX和你的vim版本有关,自己去看看。
注意:其中vimXX和你的vim版本有关,自己去看看。
- 3楼网友:英雄的欲望
- 2021-01-29 08:17
所谓home就是你的主目录,比如你用户名是xxx, 那么home就是指/home/xxx/。如果那里没有.vimrc(.开头的在linux是隐藏文件,所以你最好在console下查看: ls -All)的话你就新建一个。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯