libgcc

导航

 

惯用vim,禁用capslock键的reg:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,00,00,3a,00,00,00,00,00

 

 

顺便把我的vimrc保存一下

set nocompatible
set nu
set is
set hls
set nowrapscan  "搜到头就不搜了
set whichwrap=b,s,<,>    "空格与backspace可以跨行移动
set ic
set backspace=2
set autoindent
set tabstop=4   "tab宽度4个空格
set softtabstop=4
set expandtab       "自动用空格替代tab
set shiftwidth=4        "自动缩进4个空格
set history=50
set ruler
set fileformat=unix         "以unix格式保存
cmap xx tabnew <C-D>
filetype plugin indent on
colorscheme evening
set encoding=utf-8
set termencoding=cp936
"set encoding=cp936
set fileencodings=utf-8,gb2312,gb18030,gbk,ucs-bom,cp936,latin1
syntax on

posted on 2013-04-17 19:45  libgcc  阅读(142)  评论(0)    收藏  举报