Last active
July 18, 2020 05:43
-
-
Save mollifier/a5874b96b14cbf00d7a36802f91fe25d 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
" 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