Skip to content

Instantly share code, notes, and snippets.

@mollifier
Last active July 18, 2020 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mollifier/a5874b96b14cbf00d7a36802f91fe25d to your computer and use it in GitHub Desktop.
Save mollifier/a5874b96b14cbf00d7a36802f91fe25d to your computer and use it in GitHub Desktop.
vimrcの例
" vimrcの例
" 行番号を表示する
set number
" 現在のモードを表示する
set showmode
" 入力中のコマンドを表示する
set showcmd
" インクリメンタル検索を有効にする
set incsearch
" シンタックス ハイライト機能を有効にする。
syntax enable
" ファイルタイプ インデントを有効にする。
filetype indent on
" ファイルタイプ プラグインを有効にする。
filetype plugin on
" ステータスラインを表示する
set laststatus=2
" ステータスラインに表示する内容
set statusline=%F%m%=%l/%L
" 文字コードの設定
set encoding=utf-8
set fileencoding=utf-8
set fileencodings=ucs-bom,utf-8,cp932,latin1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment