nixos/configure_options.md

14 lines
809 B
Markdown
Raw Normal View History

2021-02-11 15:53:09 +00:00
# VIM build options
2021-03-23 14:33:18 +00:00
To reset `configure` options: `make clean distclean`
2021-02-11 15:53:09 +00:00
## `./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* |
Standard command: `./configure --prefix="$HOME/.local" --with-features=huge --enable-python3interp --with-python3-command=/usr/bin/python3`