MyNixOS website logo
option

programs.neovim.extraLuaConfig

Content to be added to init.lua.

Automatically contains the advised plugin config

To specify the order, use lib.mkOrder, lib.mkBefore, lib.mkAfter.

Declarations
Type
strings concatenated with "\n"
Default
""
Example
let
    nvimEarlyInit = lib.mkOrder 500 "set rtp+=vim.opt.rtp:prepend('/home/user/myplugin')";
    nvimLateInit = lib.mkAfter "vim.opt.signcolumn = 'auto:1-3'";
in
    lib.mkMerge [ nvimEarlyInit nvimLateInit ];