0
0

More than 1 year has passed since last update.

【Vim】プラグインの導入方法

Posted at

はじめに

スマホ(Android)で開発するのでVimの環境構築は必須です。

動作環境

  • Sony Xperia 10 IV
  • Android OS 12
  • UserLAnd 3.1.4
  • Ubuntu 20.04.5 LTS
  • Git 2.39.0
  • Vim 8.1.3741
  • Yarn 1.22.19

vim-plugをインストール

Vimのプラグインマネージャーをインストールします。

$ curl -k -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

設定ファイルを編集

導入したいプラグインをbeginとendの間に追記していきます。

~/.vimrc
call plug#begin()
call plug#end()
0
0
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
0
0