From 9ece6e7600efabccf14d226736ccc5b0f9e8aa57 Mon Sep 17 00:00:00 2001 From: Edward Litherland-Smith Date: Thu, 11 Feb 2021 15:53:09 +0000 Subject: [PATCH] Add some notes on compiling vim --- compile_options.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 compile_options.md diff --git a/compile_options.md b/compile_options.md new file mode 100644 index 00000000..2ed73949 --- /dev/null +++ b/compile_options.md @@ -0,0 +1,9 @@ +# VIM build options + +## `./configure` +| Commmand | Effect | +| -------------------------------- | -------------------------------------------------------- | +| `--prefix=$HOME/.local` | Local install so don't need `sudo` | +| `--with-features=huge` | Enable all extra VIM features | +| `--enable-python3interp` | Compile with python3, *Don't be in virtual env for this* | +| `--with-python3-command=python3` | Compile with python3, *Don't be in virtual env for this* |