Skip to content

Instantly share code, notes, and snippets.

@Mossuru777
Last active May 22, 2017 04:29
Show Gist options
  • Save Mossuru777/096a98f671445034febf93470cee77f9 to your computer and use it in GitHub Desktop.
Save Mossuru777/096a98f671445034febf93470cee77f9 to your computer and use it in GitHub Desktop.
" ファイルエンコーディング
set fileencodings=utf-8,cp932
" 編集中のファイルが変更されたら自動で読み直す
set autoread
" 行番号を表示
set number
" 現在の行を強調表示
set cursorline
" 行末の1文字先までカーソルを移動できるように
set virtualedit=onemore
" インデントはスマートインデント
set smartindent
" ビープ音を可視化
set visualbell
" 括弧入力時の対応する括弧を表示
set showmatch
" コマンドラインの補完
set wildmode=list:longest
" 折り返し時に表示行単位での移動できるようにする
nnoremap j gj
nnoremap k gk
" ダーク系のカラースキームを使う
set background=dark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment