nvim-hs-0.0.5: Haskell plugin backend for neovim

Copyright(c) Sebastian Witte
LicenseApache-2.0
Maintainerwoozletoff@gmail.com
Stabilityexperimental
Safe HaskellNone
LanguageHaskell2010

Neovim.Config

Description

 

Synopsis

Documentation

data NeovimConfig Source

This data type contins information about the configuration of neovim. See the fields' documentation for what you possibly want to change. Also, the tutorial in the Neovim module should get you started.

Constructors

Config 

Fields

plugins :: [Neovim (StartupConfig NeovimConfig) () NeovimPlugin]

The list of plugins. The IO type inside the list allows the plugin author to run some arbitrary startup code before creating a value of type NeovimPlugin.

logOptions :: Maybe (FilePath, Priority)

Set the general logging options.

errorMessage :: Maybe String

Internally used field. Changing this has no effect.

Used by Dyre for storing compilation errors.

module System.Log