Last active
November 4, 2015 04:05
-
-
Save hiropppe/4fe48f2f755112f25c46 to your computer and use it in GitHub Desktop.
ec2とかちょっと入った環境でなんか書きたいときにこれ使う
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set encoding=utf8 | |
set number | |
set paste | |
set expandtab | |
set textwidth=0 | |
set tabstop=4 | |
set softtabstop=4 | |
set shiftwidth=4 | |
set autoindent | |
set backspace=indent,eol,start | |
set incsearch | |
set hlsearch | |
set ignorecase | |
set ruler | |
syntax on | |
nnoremap s <Nop> | |
nnoremap sj <C-w>j | |
nnoremap sk <C-w>k | |
nnoremap sl <C-w>l | |
nnoremap sh <C-w>h | |
nnoremap sJ <C-w>J | |
nnoremap sK <C-w>K | |
nnoremap sL <C-w>L | |
nnoremap sH <C-w>H | |
nnoremap sn gt | |
nnoremap sp gT | |
nnoremap sr <C-w>r | |
nnoremap s= <C-w>= | |
nnoremap sw <C-w>w | |
nnoremap so <C-w>_<C-w>| | |
nnoremap sO <C-w>= | |
nnoremap sN :<C-u>bn<CR> | |
nnoremap sP :<C-u>bp<CR> | |
nnoremap st :<C-u>tabnew<CR> | |
nnoremap sT :<C-u>Unite tab<CR> | |
nnoremap ss :<C-u>sp<CR> | |
nnoremap sv :<C-u>vs<CR> | |
nnoremap sq :<C-u>q<CR> | |
nnoremap sQ :<C-u>bd<CR> | |
nnoremap sb :<C-u>Unite buffer_tab -buffer-name=file<CR> | |
nnoremap sB :<C-u>Unite buffer -buffer-name=file<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment