博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Vim常用配置(~/.vimrc)(转载)
阅读量:4955 次
发布时间:2019-06-12

本文共 1371 字,大约阅读时间需要 4 分钟。

原文地址:http://www.2cto.com/os/201309/246271.html

" This must be first, beacuse it changes other options as a side effect.set nocompatible  " show line numbersset number  "  display "-- INSERT --" when entering insert modeset showmode  " incremental searchset incsearch  " highlight matching search termsset hlsearch  " set ic means case-insensitive search; noic means case-sensitive.set noic  " allow backspacing over any character insert modeset backspace=indent,eol,start  " do not wrap linesset nowrap  " set mouse to work in the console" set mouse=a  " keep 50 lines of command line historyset history=50  " show the cursor positionset ruler  " save a backup fileset backup  " the visual bell flashes the background instead of an audible bell.set visualbell  " set sensible defaults for different types of text files.au filetype c set cindent tw=79au filetype sh set ai et sw=4 sts=4 noexpandtabau filetype vim set ai et sw=2 sts=2 noexpandtab  " indent new lines to match the current identationset autoindent  " don't replace tabs with spacesset noexpandtab  " use tabs at the start of a line, spaces elsewhereset smarttab  " show syntax highlightingsyntax on  " show whitespace at the end of a linehighlight whitespaceEOF ctermbg=blue guibg=bluematch whitespaceEOF /\s\+$/  set tabstop=4set shiftwidth=4set cursorline

 

转载于:https://www.cnblogs.com/wiming/p/3713520.html

你可能感兴趣的文章
MATLAB实现多元线性回归预测
查看>>
Mac xcode 配置OpenGL
查看>>
利用sed把一行的文本文件改成每句一行
查看>>
使用Asyncio的Coroutine来实现一个有限状态机
查看>>
Android应用开发:核心技术解析与最佳实践pdf
查看>>
python——爬虫
查看>>
2.2 标识符
查看>>
孤荷凌寒自学python第五天初识python的列表
查看>>
孤荷凌寒自学python第五十八天成功使用python来连接上远端MongoDb数据库
查看>>
求一个字符串中最长回文子串的长度(承接上一个题目)
查看>>
简单权限管理系统原理浅析
查看>>
springIOC第一个课堂案例的实现
查看>>
求输入成绩的平均分
查看>>
ORACLE 数据库概述
查看>>
php PDO (转载)
查看>>
保险折扣统计
查看>>
贝叶斯
查看>>
wordpress自动截取文章摘要代码
查看>>
[置顶] 一名优秀的程序设计师是如何管理知识的?
查看>>
关于使用“状态模式”做工作流概要。
查看>>