$cd ~
$touch .vimrc
$vi .vimrc
加如以下配置:
set number " 显示行号
set autoindent "自动对齐
set smartindent "智能对齐
set showmatch "括号匹配模式
set ruler "显示状态行
set incsearch "搜索时一边输入一边显示效果
set ignorecase "忽略大小写
set tabstop=4 "tab键为4个空格
set shiftwidth=4
set softtabstop=4
set cindent " C语言格式对齐
"set nobackup "不要备份文件
"set clipboard+=unnamed "与windows共享剪贴板
syntax enable "语法高亮
syntax on
阅读(1298) | 评论(0) | 转发(0) |