6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows の Git Shell で vim を使う

Posted at

GitHub for Windowsを導入すると、Git Shellが使えます。
ここで多くの Unixライクなコマンドが使えます。vim も入っていますが、単に vim しても実行できませんが、下記のように設定すると使えるようになります。

  • Git Shell は PowerShell にしておきます。(デフォルト)
  • Git Shell を起動し、下記を実行します。
  • mkdir $(Get-ChildItem $profile).DirectoryName
  • echo 'function vim {sh vim $args}' > $profile
  • いったん、終了します。

次回の起動から、vim が使えるようになります。(viでも 同様にできます)

  • 既にプロファイルを作成済みの場合は、echoの内容を追記してください。
  • Unicodeで作成されるのがいやならば、別途メモ帳などで作成してください。
6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?