Last active
June 22, 2016 11:18
-
-
Save tjkendev/81c1570cecbf77cefb9342d8e29df622 to your computer and use it in GitHub Desktop.
プラグインなしの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
" .vimrc settings without plugin | |
scriptencoding utf-8 | |
"" editor | |
" tabをshiftに置き換え | |
" tab幅4を想定した記述 | |
set smarttab | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set softtabstop=4 | |
set shiftround | |
set autoindent "or cindent (C/C++) | |
set formatoptions-=r | |
set backspace=indent,eol,start | |
"" visual | |
set ruler | |
set number | |
set showmatch | |
"" search | |
set ignorecase | |
set smartcase | |
set wrapscan | |
set hlsearch | |
set incsearch | |
"" ESC2回で検索ハイライトを消す | |
nnoremap <silent> <Esc><Esc> :<C-u>nohlsearch<CR><Esc> | |
"" encoding | |
set encoding=utf-8 | |
set fileencoding=utf-8 | |
"" system | |
set mouse=a | |
set vb t_vb= | |
"" syntax | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment