aboutsummaryrefslogtreecommitdiffstats
path: root/vim/install.sh
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2021-06-05 21:31:14 +0000
committerterminaldweller <thabogre@gmail.com>2021-06-05 21:31:14 +0000
commitacf6683d531ca50c97e4f553faad7a8bfb86ed0e (patch)
treeaa452b333e7f1e7c05b9d884e5dc4ffcdb41d3cb /vim/install.sh
parentfixed the w3m script problems. now using exa. some other small stuff (diff)
downloadscripts-acf6683d531ca50c97e4f553faad7a8bfb86ed0e.tar.gz
scripts-acf6683d531ca50c97e4f553faad7a8bfb86ed0e.zip
too much to talk about...
Diffstat (limited to 'vim/install.sh')
-rwxr-xr-xvim/install.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/vim/install.sh b/vim/install.sh
index f8dd9a8..4152b73 100755
--- a/vim/install.sh
+++ b/vim/install.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env sh
-VIM_VERSION=8.2.2885
+VIM_VERSION=8.2.2932
sudo apt remove --purge vim vim-runtime vim-gnome vim-tiny vim-gui-common
sudo rm -rf /usr/local/share/vim /usr/bin/vim
@@ -11,7 +11,7 @@ mkdir -p ~/vimsrc && \
wget https://github.com/vim/vim/archive/v"$VIM_VERSION".tar.gz && \
tar -xvf v"$VIM_VERSION".tar.gz -C ~/vimsrc
-cd vim-"$VIM_VERSION" && ./configure \
+cd ~/vimsrc/vim-"$VIM_VERSION" && ./configure \
--with-features=huge \
--enable-multibyte \
--enable-perlinterp=yes \
@@ -36,6 +36,7 @@ cd vim-"$VIM_VERSION" && ./configure \
# --enable-pythoninterp=yes \
# --with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu \
-make -j4 && sudo make install
+make -j4
+sudo make install
# run :helptags path-to-where-the-docs-are
sudo vim -c "helptags $VIMRUNRIME"