CUI のエディタである Vim のチュートリアルをやってみました。
また、その中で出た設定ファイルも組み込んでみました。
Vim のチュートリアルは Vim が入っていればたぶん入っていて、
以下のコマンドを実行すれば良いです。
vimtutor ja
全7章からなる Vim の基本的な使い方のチュートリアルです。
30分くらいでできると思うので使う人は是非やってみることをオススメします。
その中で Vim の設定ファイルである .vimrc の例があったのでこちらに少しいじったのを載せておきます。
原文は適当なファイルで以下のコマンドを実行して確認してください。
:read $VIMRUNTIME/vimrc_example.vim
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | " :read $VIMRUNTIME/vimrc_example.vim" When started as "evim", evim.vim will already have done these settings." "evim" コマンドで開始した場合は設定済みとして読み込まずに終了する。if v:progname =~? "evim" finishendif" Use Vim settings, rather than Vi settings (much better!)." This must be first, because it changes other options as a side effect." Vi の設定よりも Vim の設定を使用する。" これは副作用として他のオプションを変更するため最初に記述する。set nocompatible" allow backspacing over everything in insert mode" 挿入モードの全てにおいてバックスペースを許可するset backspace=indent,eol,startif has("vms") set nobackup " do not keep a backup file, use versions insteadelse set backup " keep a backup fileendifset history=50 " keep 50 lines of command line history " コマンドライン履歴を50行保持するset ruler " show the cursor position all the time " 常にカーソルのポジションを表示するset showcmd " display incomplete commands " 不完全なコマンドを表示するset incsearch " do incremental searching " インクリメンタルサーチをする" Don't use Ex mode, use Q for formatting" フォーマットに Q を使用する Ex モードを使用しない。map Q gq" CTRL-U in insert mode deletes a lot. Use CTRL-G u to first break undo," so that you can undo CTRL-U after inserting a line break." 挿入モードでの CTRL-U で たくさん削除する。" 改行を入れた後の CTRL-U で元に戻せるようにするために、" まず CTRL-G u を使ってアンドゥを中断してください。inoremap <C-U> <C-G>u<C-U>" In many terminal emulators the mouse works just fine, thus enable it." 多くのターミナルエミュレータでマウスは良い働きをするので有効化する。if has('mouse') set mouse=aendif" Switch syntax highlighting on, when the terminal has colors" Also switch on highlighting the last used search pattern." ターミナルに色がある場合、シンタックスハイライトを ON に変更する。if &t_Co > 2 || has("gui_running") syntax on set hlsearchendif" Only do this part when compiled with support for autocommands." autocommands のサポートが有効な場合のみこの部分を実行するif has("autocmd") " Enable file type detection. " ファイルタイプ検出を有効にする。 " Use the default filetype settings, so that mail gets 'tw' set to 72, " 'cindent' is on in C files, etc. " Also load indent files, to automatically do language-dependent indenting. " デフォルトのファイルタイプ設定を使用する。 " また、言語ごとのインデントを自動実行するためのインデントファイルを読み込む。 filetype plugin indent on " Put these in an autocmd group, so that we can delete them easily. " 削除しやすいように autocmd グループにこれらを記述する。 augroup vimrcEx au! " For all text files set 'textwidth' to 78 characters. " すべてのテキストファイルについてテキスト幅は 78 文字にセットする。 autocmd FileType text setlocal textwidth=78 " When editing a file, always jump to the last known cursor position. " ファイルの編集中に常に最後のカーソルポジションにファンプできるようにする。 " Don't do it when the position is invalid or when inside an event handler " (happens when dropping a file on gvim). " Also don't do it when the mark is in the first line, that is the default " position when opening a file. autocmd BufReadPost * \ if line("'\"") > 1 && line("'\"") <= line("$") | \ exe "normal! g`\"" | \ endif augroup ENDelse set autoindent " always set autoindenting on " 常にオートインデントを ON にする。endif " has("autocmd")" Convenient command to see the difference between the current buffer and the" file it was loaded from, thus the changes you made." 変更前と変更後の diff を確認する便利コマンド" Only define it when not defined already." すでに定義されていない場合のみ定義する。if !exists(":DiffOrig") command DiffOrig vert new | set bt=nofile | r # | 0d_ | diffthis \ | wincmd p | diffthisendif |
とりあえず設定を書いて読み込むと Vim がカラーついて便利になると思います。
僕は直接コレを ~/.vimrc には書きたくなかったので .vimrc.ex を用意して .vimrc から読み込むことにしました。
参考: Vim-users.jp - Hack #108: vimrc で外部ファイルを取り込む
構造は以下のとおりです。
1 2 3 | .vimrc.vim└── .vimrc.ex |
1 2 3 4 5 6 | " 基本的な Vim の設定(必ず最初に読み込む)if filereadable(expand('~/.vim/.vimrc.ex')) source ~/.vim/.vimrc.exendif" 以下、その他の自分で追加した設定 |
この記事へのリンク
リンクを作成