Skip to content
Jean Guyomarc'h edited this page Jul 10, 2021 · 15 revisions

Welcome to Eovim's Wiki. On this page, you will find pointers to documentation that you are more likely to search for. Explore the pages on the right sidebar for more topics.

Features

Configuration variables

Eovim can be controlled through vimscript by the following variables (exhaustive list):

Dependencies

As mentioned in the README, you need the following dependencies to build and run eovim:

  • EFL, as the GUI toolkit;
  • Neovim, of course;
  • MsgPack-C, to encode and decode data to and from neovim;
  • CMake, to generate a build system;
  • and the usual C build tools (compiler, make, etc.)

Ubuntu (before 20.04)

add-apt-repository --yes ppa:niko2040/e19
apt install libefl-dev libmsgpack-dev cmake build-essential

Ubuntu (from 20.04) and Debian (10 ?)

apt install libefl-all-dev libmsgpack-dev cmake build-essential