nixos/configure_options.md
Edward Litherland-Smith 519cf87831 Add onehalf theme, set as default + theme for lightline
Rename compile_options to configure_options

Move tmux.conf into .vim directory to enable consistent behaviour
when setting up vim + tmux on other machines
2021-02-19 09:59:49 +00:00

12 lines
715 B
Markdown

# 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* |
Standard command: `./configure --prefix="$HOME/.local" --with-features=huge --enable-python3interp`