Created
August 3, 2015 15:56
-
-
Save lotz84/f2f09d3bb2e144126114 to your computer and use it in GitHub Desktop.
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
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set ruler | |
set number | |
set tabstop=4 | |
set autoindent | |
set expandtab | |
set shiftwidth=4 | |
set foldmethod=marker | |
set hidden | |
" Note: Skip initialization for vim-tiny or vim-small. | |
if !1 | finish | endif | |
if has('vim_starting') | |
if &compatible | |
set nocompatible " Be iMproved | |
endif | |
" Required: | |
set runtimepath+=~/.vim/bundle/neobundle.vim/ | |
endif | |
" Required: | |
call neobundle#begin(expand('~/.vim/bundle/')) | |
"タブ、空白、改行の可視化 | |
set list | |
set listchars=tab:>.,trail:_,extends:>,precedes:<,nbsp:% | |
" Let NeoBundle manage NeoBundle | |
" Required: | |
NeoBundleFetch 'Shougo/neobundle.vim' | |
" My Bundles here: | |
" Refer to |:NeoBundle-examples|. | |
" Note: You don't set neobundle setting in .gvimrc! | |
NeoBundle 'kchmck/vim-coffee-script' | |
NeoBundle 'digitaltoad/vim-jade' | |
NeoBundle 'godlygeek/tabular' | |
call neobundle#end() | |
" Required: | |
filetype plugin indent on | |
" If there are uninstalled bundles found on startup, | |
" this will conveniently prompt you to install them. | |
NeoBundleCheck | |
" 消去、編集 | |
imap <C-k> <ESC>d$i | |
imap <C-y> <ESC>pi | |
imap <C-d> <ESC>xi | |
" 移動 | |
imap <C-a> <Home> | |
imap <C-e> <End> | |
imap <C-b> <Left> | |
imap <C-f> <Right> | |
imap <C-n> <Down> | |
imap <C-p> <UP> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment