여럿이 사용하는 linux 서버의 경우 다음과 같이 코드를 직접 빌드하여 개인 디렉토리에 vim을 설치할 수 있다.
- Version
- vim: 9.0
- commit: e764d1b4219e6615a04df1c3a6a5c0210a0a7dac
- Download code
$ git clone https://github.com/vim/vim.git
- Build
$ cd vim $ vi Makefile [Change prefix variable(line: 956)] ... # Uncomment the next line to install Vim in your home directory prefix = $(HOME)/.local ... $ make install
- Set environment variables
$ vi ~/.bashrc [Append PATH] ... export PATH=$HOME/.local/bin:$PATH ...
PREVIOUSEtc