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
" ---------------------------------- | |
" name: .vimrc | |
" maintener: modsound@gmail.com | |
" ---------------------------------- | |
" ---------------------------------- | |
" IMPORT | |
" ---------------------------------- | |
"Vundle設定を読み込む |
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
" ---------------------------------- | |
" name: keymap.vim | |
" maintener modsound@gmail.com | |
" refered from .vimrc | |
" ---------------------------------- | |
" ---------------------------------- | |
" システム環境設定 | |
" ---------------------------------- |
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
" ---------------------------------- | |
" name: neobundle.vim | |
" maintener: modsound@gmail.com | |
" refered from .vimrc | |
" ---------------------------------- | |
set nocompatible | |
filetype plugin indent off | |
set rtp+=~/.vim/bundle/vundle/ |
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
" ---------------------------------- | |
" neobundle.vim | |
" maintenanced by modsound@gmail.com | |
" refered from .vimrc | |
" ---------------------------------- | |
set nocompatible | |
filetype plugin indent off | |
set rtp+=~/.vim/bundle/vundle.git/ |
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
" =================== | |
" neobundle.vim | |
" maintenanced by modsound@gmail.com | |
" refered from .vimrc | |
" =================== | |
set nocompatible | |
filetype plugin indent off | |
set rtp+=~/.vim/bundle/vundle.git/ |
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
" ================================= | |
" .vimrc | |
" maintenanced by modsound@gmail.com | |
" ================================= | |
"Vundle設定を読み込む | |
if filereadable(expand('~/.vim/bundle/bundle.vim')) | |
source ~/.vim/bundle/bundle.vim | |
endif |
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
" =================== | |
" keymap.vim | |
" maintenanced by modsound@gmail.com | |
" refered from .vimrc | |
" =================== | |
"システム環境設定 | |
".vimrcを開く: <Space>e. | |
nnoremap <Space>e. :<C-u>edit $MYVIMRC<Enter> |