1
0

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.

CentOS7: Vim最新版 -> GitHub

1
Last updated at Posted at 2020-09-10

vimのバージョン7がインストールされているときの備忘録。
-> バージョン8へアップグレード

必要なパッケージのインストール

# yum update
# yum grouplist
# #インストールされてる、できるグループパッケージ一覧表示
# 開発用ツールグループのインストール
# yum groupinstall "Development Tools"
# yum install ncurses-devel

標準パッケージのアンインストール

# インストールされているパッケージを調べる。
$ sudo rpm -qa | grep vim
vim-filesystem-7.4.629-6.el7.x86_64
vim-common-7.4.629-6.el7.x86_64
vim-enhanced-7.4.629-6.el7.x86_64
vim-minimal-7.4.629-6.el7.x86_64
# パッケージのアンインストール
$ sudo yum remove vim-filesystem vim-common vim-enhanced

githubからのダウンロード

# git clone https://github.com/vim/vim.git

ビルド

# cd ./vim
# make
# make install

確認

# vim --version

エイリアス登録

.bashrc
+ alias vi='vim'
+ alias v='vim .'

LGTMお願いします!
モチベーションがあがります!

1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?