02_Linux中vim配置

在用户家目录中创建一个.vim的文件夹, 然后在里面创建一个vimrc, 在vimrc中进行配置设置。

let mapleader=" "
set hlsearch
exec "nohlsearch"
set incsearch
set ignorecase
set smartcase
set showcmd
set nu
set cursorline
set ruler

noremap i k
noremap k j
noremap j h
noremap h i
noremap H I
noremap L 5l
noremap J 5h
noremap I 5k
noremap K 5j
inoremap jk <Esc>

map <LEADER><CR> :nohlsearch<CR>
map s <nop>
map S :w<CR>
map Q :q<CR>

你可能感兴趣的:(Linux学习,vim)