Last active
August 29, 2015 14:09
-
-
Save katsumata-ryo/94194966cc1abaee23c1 to your computer and use it in GitHub Desktop.
.vimrcテンプレート
This file contains 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
" color scheme | |
" get => https://raw.githubusercontent.com/tomasr/molokai/master/colors/molokai.vim | |
" change : ctermfg=222 => ctermfg=227 | |
colorscheme molokai | |
syntax on | |
let g:molokai_original = 1 | |
let g:rehash256 = 1 | |
set background=dark | |
set t_Co=256 | |
" display | |
set number | |
set ruler | |
set title | |
" write support | |
set cursorline | |
set smartindent | |
set autoindent | |
set showmatch | |
set formatoptions-=c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment