vimrc_51CTO博客
自己用了很久的vimrc,拿出来和大家分享!顺便求高手斧正部分错误!   如: 1、CTRL+s是可以保存的!但是,如果没有文件名,则会报错,也无法保存!求高手改正此处错误! 2、vimrc中已经设置了set autoindent;但是,在使用中依然无法自动缩进,必须在打开vim之后,在命令行输入:set autoindent方可实现自动缩进的功能!   cd&nb
转载 精选 2011-09-18 17:09:33
486阅读
set nocompatible source $VIMRUNTIME/vimrc_example.vim source $VIMRUNTIME/mswin.vim behave mswin   set diffexpr=MyDiff() function MyDiff()   let opt = '-a --binary '   if &di
vim
原创 2013-02-17 20:39:08
394阅读
set nocompatible              " be iMproved, requiredfiletype off                  " required" set the runtime path to include Vundle and initializeset rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()
原创 2021-08-10 16:50:33
94阅读
"color asmanian2 " 设置背景主题 "syntax on " 语法高亮 """""新文件标题"""""""""""""""""""""""""""""""""&qu ...
转载 2021-10-05 00:30:00
150阅读
2评论
set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936 set termencoding=utf-8 at...
ii
原创 2023-07-11 16:43:29
62阅读
 "设置为不与VI兼容 set nocompatible "帮助文档语言 set helplang=cn "查看文本时用到的编码类型 set encoding=utf-8 "启用语法高亮 syntax enable syntax on "本色方案 colorscheme desert "shiftwidth
原创 2013-01-04 13:22:37
537阅读
1 " show row num 2 set nu 3 4 " show syntax highlight 5 set syntax=on 6 7 " set autoindent 8 set autoindent 9 set cindent10 11 " set tab w...
vim
转载 2014-08-13 10:14:00
90阅读
set nocompatibleset guifont=MiscFixed\ 14set shiftwidth=4set hlsearchset incsearchset autoindentset nuset bs=indent,eol,startset noetset ruset smset showmatchset hls set history=1000set cindentset sma
vim
原创 2013-04-24 16:27:07
1073阅读
augroup filetype autocmd! BufRead,BufNewFile BUILD set filetype=bladeaugroup endcolo desert set numberset autoindentset smarttabset smartcaseset smart
转载 2018-08-01 16:46:00
136阅读
2评论
我的Vim界面 语法补全我用的是YouCompleteMe, 有目录树插件,taglist插件等。通过插件管理器Vundle来进行安装,具体方法自行百度。 背景可以通过换张自己喜爱的壁纸,
转载 2019-08-08 06:04:00
80阅读
2评论
syntax onset numberset autoindentset cindentset smartindent
转载 2010-11-16 11:59:00
80阅读
2评论
vimrc 文件常用配置做个记录
原创 2023-06-20 10:51:16
141阅读
How To VimrcThere is just one rule you must fo
原创 2023-05-12 21:51:57
83阅读
"peerslee { set foldmethod=indent filetype on filetype plugin on filetype indent on autocmd BufNewFile *.py exec ":call S..
原创 2022-10-28 11:58:46
63阅读
vim配置文件:    全局:/etc/vimrc    个人:~/.vimrc内容:set tabstop=4 set shiftwidth=4 set softtabstop=4 set expandtab set autoindent set mouse
原创 2016-04-15 06:40:43
513阅读
 ""map <F9> :call SaveInputData()<CR> ""func! SaveInputData() "" exec "tabnew" "" exec 'normal "+gP' "" exec &quot
原创 2012-08-04 21:19:35
410阅读
set nocompatible " 不兼容viset softtabstop=2 " 2空格缩进set shiftwidth=4 " 4空格右移set tabstop=4 " 4空格显示^Isyntax on " 允许高亮set autoindent " 允许自动缩进set number " 允许行号colorscheme desert " 颜色主题
原创 2021-08-19 17:05:32
73阅读
  记录一下 map <F11> :! python -i % <CR> map <F4> ms:call TitleDet()<cr>'s  function AddTitle()  &
原创 2013-04-16 16:31:16
762阅读
3评论
set nocompatible " 不兼容viset softtabstop=2 " 2空格缩进set shiftwidth=4 " 4空格右移set tabstop=4 " 4空格显示^Isyntax on " 允许高亮set autoindent " 允许自动缩进set number " 允许行号colorscheme desert " 颜色主题
原创 2022-02-25 09:56:32
27阅读
在Linux系统中,Vim是一款备受欢迎的文本编辑器之一。它功能强大,速度快,并且拥有丰富的插件和配置选项。而Linux中的vimrc文件,则是Vim编辑器的配置文件。通过对vimrc文件的配置,可以定制Vim的工作方式,使其更加适应个人的使用习惯和需求。 首先,我们需要了解vimrc文件的位置。在大多数Linux发行版中,vimrc文件位于用户的主目录下,即~/.vimrc。需要注意的是,这个
原创 10月前
49阅读
  • 1
  • 2
  • 3
  • 4
  • 5