码迷,mamicode.com
首页 > 系统相关 > 详细

蒟蒻的Vim配置

时间:2019-07-20 17:02:08      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:syntax   tabstop   tabs   nta   expand   hls   提示   soft   start   

set t_Co=256 "启用256色
set number "启用行号
set tabstop=4  "Tab显示行数
syntax on "代码高亮(好像不用开)
color ron "粉嫩的主题
set ruler "尺子
set mouse=a "启用鼠标
"自动缩进三选一
"set autoindent 与上一行相同的自动缩进
"set smartindent 不知所云的自动缩进
set cindent "C风格的自动换行
"set expandtab "tab自动转空格
set softtabstop=4 "tab转为多少个空格
set shiftwidth=4 "自动缩进时的tab大小
set nowrap "禁止自动折行
set hlsearch "搜索高亮
set noerrorbells "禁止提示音
inoremap ' ''<ESC>i
inoremap ( ()<ESC>i
inoremap [ []<ESC>i
inoremap " ""<ESC>i
inoremap { {}<ESC>i
map <F7>  :r ~/Code/formwork/start.cpp<CR>
map <F8> <ESC> :w <CR> :!g++ -g -Wall % -o %< <CR>
map <F9> <ESC> :w <CR> :!g++ -g -Wall % -o %< && ./%< <CR>
map <F6> <ESC> :w <CR> :!g++ -g -Wall % -o %< && ./%< < %<.in <CR>
map <F5> <ESC> :!gdb %< <CR>

蒟蒻的Vim配置

标签:syntax   tabstop   tabs   nta   expand   hls   提示   soft   start   

原文地址:https://www.cnblogs.com/oiertkj/p/11218293.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!