Chinaunix首页 | 论坛 | 博客
  • 博客访问: 284205
  • 博文数量: 48
  • 博客积分: 1255
  • 博客等级: 中尉
  • 技术积分: 486
  • 用 户 组: 普通用户
  • 注册时间: 2009-09-01 18:28
文章分类

全部博文(48)

文章存档

2014年(10)

2012年(9)

2011年(17)

2010年(9)

2009年(3)

我的朋友

分类: LINUX

2014-07-08 18:34:59

colorscheme desert  " 设置主题方案
set number          " 显示行号
set cursorline      " 突出显示当前行
set tabstop=4       " 设置tab键的宽度
set backspace=2     " 设置退格键可用


syn on              " 打开语法高亮
set showmatch       " 设置匹配模式,类似当输入一个左括号时会匹配相应的那个右括号
set smartindent     " 智能对齐方式
set shiftwidth=4    " 换行时行间交错使用4个空格
set autoindent      " 自动对齐
set ai!             " 设置自动缩进
filetype plugin indent on     " 开启插件
set completeopt=longest,menu




" ===============================================================================
" TagList :Tlist
" ===============================================================================


let Tlist_Show_One_File=1
let Tlist_Exit_OnlyWindow=1


" ===============================================================================
" WinManager :WMToggle
" ===============================================================================


let g:winManagerWindowLayout='FileExplorer|TagList'
nmap wm :WMToggle


" ===============================================================================
" cscope
" ===============================================================================


set cscopequickfix=s-,c-,d-,i-,t-,e-


" ===============================================================================
" MiniBufExp
" ===============================================================================


let g:miniBufExplMapCTabSwitchBufs = 1
let g:miniBufExplMapWindowNavVim = 1
let g:miniBufExplMapWindowNavArrows = 1


" ===============================================================================
" SuperTab :SuperTabHelp
" ===============================================================================


let g:SuperTabRetainCompletionType=2
let g:SuperTabDefaultCompletionType=""


" ===============================================================================
" 热键映射
" ===============================================================================


nmap s :cs find s =expand("")   "cscope插件热键
nmap g :cs find g =expand("")
nmap c :cs find c =expand("")
nmap t :cs find t =expand("")
nmap e :cs find e =expand("")
nmap f :cs find f =expand("")
nmap i :cs find i ^=expand(""){1}lt;CR>
nmap d :cs find d =expand("")


nmap :cn    “ cw模式下热键
nmap :cp


map :A     “ 头文件与源文件切换


map :w:make   ”执行编译MAKE
map :make clean  


vmap "yy   “复制模拟 CTRL + C
vmap "yd
nmap "yp
vmap "yp
nmap ggvG$


nmap :wa  “模拟WIN 保存 CTRL + S
imap :wai

阅读(1298) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~