用conda 安装最新版vim
2020-04-26 本文已影响0人
leoatchina
conda几经升级后,其source库里软件越来越丰富,也能更好地处理安装时的依赖问题。现在linux下装软件都首先在conda库里找,特别是更新比较激进的conda-forge
库,最近发现vim
已经有了8.2
以上版本,总结了下其安装和辅助软件的安装过程,做下记录。
0. prepare
conda update -n base conda -y && conda install -y pip
1. install vim8.2
conda install -c conda-forge vim -y
2. install some assistants
conda install -c conda-forge pynvim ripgrep python-language-server pygments -y
conda install -c conda-forge nodejs yarn git tmux -y
pip install neovim-remote
3. tags
universal-ctags
conda install -c https://conda.anaconda.org/asford universal-ctags -y
gtags
cd /tmp
rm -rf global-6.*
wget https://ftp.gnu.org/pub/gnu/global/global-6.6.4.tar.gz
tar xvzf global-6.6.4.tar.gz
cd global-6.6.4
./configure --prefix=$HOME/.local --with-sqlite3
make && make install