Skip to content

Instantly share code, notes, and snippets.

@iizukak
Created January 5, 2012 02:38
Show Gist options
  • Save iizukak/1563432 to your computer and use it in GitHub Desktop.
Save iizukak/1563432 to your computer and use it in GitHub Desktop.
Vim Simple Settings
"文字コードの設定
set encoding=utf8
set fileencodings=iso-2022-jp,sjis,euc-jp
"シンタックスハイライト
syntax on
"カラースキーマの設定
set t_Co=256
colorscheme molokai
"行数の表示
set nu
"ファイル情報の表示
set laststatus=2
set statusline=%F%m%r%h%w\=[TYPE=%Y]\[FORMAT=%{&ff}]\[ENC=%{&fileencoding}]\[LOW=%l/%L]
"カーソルの点滅をやめる
set guicursor=a:blinkon0
"タブにスペースを使う
set expandtab
"タブ幅は4
set tabstop=4
"プラグインをオンにする
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment