2017-11-02 18:34:42 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.neovim;
|
|
|
|
|
2022-08-23 22:02:05 +02:00
|
|
|
fileType = (import ../lib/file-type.nix {
|
|
|
|
inherit (config.home) homeDirectory;
|
|
|
|
inherit lib pkgs;
|
|
|
|
}).fileType;
|
|
|
|
|
2021-07-26 04:40:07 +02:00
|
|
|
jsonFormat = pkgs.formats.json { };
|
|
|
|
|
2018-09-08 17:10:32 +02:00
|
|
|
extraPython3PackageType = mkOptionType {
|
|
|
|
name = "extra-python3-packages";
|
|
|
|
description = "python3 packages in python.withPackages format";
|
2020-10-12 22:50:49 +02:00
|
|
|
check = with types;
|
|
|
|
(x: if isFunction x then isList (x pkgs.python3Packages) else false);
|
2018-09-08 17:10:32 +02:00
|
|
|
merge = mergeOneOption;
|
|
|
|
};
|
|
|
|
|
2022-02-16 16:38:10 +01:00
|
|
|
# Currently, upstream Neovim is pinned on Lua 5.1 for LuaJIT support.
|
|
|
|
# This will need to be updated if Neovim ever migrates to a newer
|
|
|
|
# version of Lua.
|
|
|
|
extraLua51PackageType = mkOptionType {
|
|
|
|
name = "extra-lua51-packages";
|
|
|
|
description = "lua5.1 packages in lua5_1.withPackages format";
|
|
|
|
check = with types;
|
|
|
|
(x: if isFunction x then isList (x pkgs.lua51Packages) else false);
|
|
|
|
merge = mergeOneOption;
|
|
|
|
};
|
|
|
|
|
2020-09-25 02:08:39 +02:00
|
|
|
pluginWithConfigType = types.submodule {
|
|
|
|
options = {
|
|
|
|
config = mkOption {
|
2022-09-22 10:39:55 +02:00
|
|
|
type = types.nullOr types.lines;
|
2022-01-27 16:27:35 +01:00
|
|
|
description =
|
|
|
|
"Script to configure this plugin. The scripting language should match type.";
|
2022-09-22 10:39:55 +02:00
|
|
|
default = null;
|
2020-09-25 02:08:39 +02:00
|
|
|
};
|
2020-12-10 22:30:16 +01:00
|
|
|
|
2022-01-27 16:27:35 +01:00
|
|
|
type = mkOption {
|
|
|
|
type =
|
|
|
|
types.either (types.enum [ "lua" "viml" "teal" "fennel" ]) types.str;
|
|
|
|
description =
|
|
|
|
"Language used in config. Configurations are aggregated per-language.";
|
|
|
|
default = "viml";
|
|
|
|
};
|
|
|
|
|
2020-12-10 22:30:16 +01:00
|
|
|
optional = mkEnableOption "optional" // {
|
|
|
|
description = "Don't load by default (load with :packadd)";
|
|
|
|
};
|
|
|
|
|
|
|
|
plugin = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
description = "vim plugin";
|
|
|
|
};
|
2022-08-23 22:02:05 +02:00
|
|
|
|
|
|
|
runtime = mkOption {
|
|
|
|
default = { };
|
|
|
|
# passing actual "${xdg.configHome}/nvim" as basePath was a bit tricky
|
|
|
|
# due to how fileType.target is implemented
|
|
|
|
type = fileType "<varname>xdg.configHome/nvim</varname>" "nvim";
|
|
|
|
example = literalExpression ''
|
|
|
|
{ "ftplugin/c.vim".text = "setlocal omnifunc=v:lua.vim.lsp.omnifunc"; }
|
|
|
|
'';
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
Set of files that have to be linked in nvim config folder.
|
|
|
|
'';
|
|
|
|
};
|
2020-09-25 02:08:39 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-03-18 03:43:03 +01:00
|
|
|
allPlugins = cfg.plugins ++ optional cfg.coc.enable {
|
|
|
|
type = "viml";
|
2022-05-21 19:12:29 +02:00
|
|
|
plugin = cfg.coc.package;
|
2022-03-18 03:43:03 +01:00
|
|
|
config = cfg.coc.pluginConfig;
|
|
|
|
optional = false;
|
|
|
|
};
|
|
|
|
|
2020-10-12 22:50:49 +02:00
|
|
|
extraMakeWrapperArgs = lib.optionalString (cfg.extraPackages != [ ])
|
2021-02-06 20:43:17 +01:00
|
|
|
''--suffix PATH : "${lib.makeBinPath cfg.extraPackages}"'';
|
2022-02-16 16:38:10 +01:00
|
|
|
extraMakeWrapperLuaCArgs = lib.optionalString (cfg.extraLuaPackages != [ ]) ''
|
|
|
|
--suffix LUA_CPATH ";" "${
|
|
|
|
lib.concatMapStringsSep ";" pkgs.lua51Packages.getLuaCPath
|
|
|
|
cfg.extraLuaPackages
|
|
|
|
}"'';
|
|
|
|
extraMakeWrapperLuaArgs = lib.optionalString (cfg.extraLuaPackages != [ ]) ''
|
|
|
|
--suffix LUA_PATH ";" "${
|
|
|
|
lib.concatMapStringsSep ";" pkgs.lua51Packages.getLuaPath
|
|
|
|
cfg.extraLuaPackages
|
|
|
|
}"'';
|
2017-11-02 18:34:42 +01:00
|
|
|
|
2020-10-12 22:50:49 +02:00
|
|
|
in {
|
2021-05-04 05:47:08 +02:00
|
|
|
imports = [
|
|
|
|
(mkRemovedOptionModule [ "programs" "neovim" "withPython" ]
|
|
|
|
"Python2 support has been removed from neovim.")
|
|
|
|
(mkRemovedOptionModule [ "programs" "neovim" "extraPythonPackages" ]
|
|
|
|
"Python2 support has been removed from neovim.")
|
2022-08-26 22:11:34 +02:00
|
|
|
(mkRemovedOptionModule [ "programs" "neovim" "configure" ] ''
|
|
|
|
programs.neovim.configure is deprecated.
|
|
|
|
Other programs.neovim options can override its settings or ignore them.
|
|
|
|
Please use the other options at your disposal:
|
|
|
|
configure.packages.*.opt -> programs.neovim.plugins = [ { plugin = ...; optional = true; }]
|
|
|
|
configure.packages.*.start -> programs.neovim.plugins = [ { plugin = ...; }]
|
|
|
|
configure.customRC -> programs.neovim.extraConfig
|
|
|
|
'')
|
2021-05-04 05:47:08 +02:00
|
|
|
];
|
|
|
|
|
2017-11-02 18:34:42 +01:00
|
|
|
options = {
|
|
|
|
programs.neovim = {
|
|
|
|
enable = mkEnableOption "Neovim";
|
|
|
|
|
2018-08-18 04:50:49 +02:00
|
|
|
viAlias = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
2020-04-09 19:27:57 +02:00
|
|
|
Symlink <command>vi</command> to <command>nvim</command> binary.
|
2018-08-18 04:50:49 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
vimAlias = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
2020-04-09 19:27:57 +02:00
|
|
|
Symlink <command>vim</command> to <command>nvim</command> binary.
|
2018-08-18 04:50:49 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-02-27 01:52:04 +01:00
|
|
|
vimdiffAlias = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
2020-04-09 19:27:57 +02:00
|
|
|
Alias <command>vimdiff</command> to <command>nvim -d</command>.
|
2020-02-27 01:52:04 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-11-27 12:21:37 +01:00
|
|
|
withNodeJs = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Enable node provider. Set to <literal>true</literal> to
|
|
|
|
use Node plugins.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-11-02 18:34:42 +01:00
|
|
|
withRuby = mkOption {
|
|
|
|
type = types.nullOr types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Enable ruby provider.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
withPython3 = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Enable Python 3 provider. Set to <literal>true</literal> to
|
|
|
|
use Python 3 plugins.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
extraPython3Packages = mkOption {
|
2018-09-08 17:10:32 +02:00
|
|
|
type = with types; either extraPython3PackageType (listOf package);
|
2020-10-12 22:50:49 +02:00
|
|
|
default = (_: [ ]);
|
2022-06-13 19:57:41 +02:00
|
|
|
defaultText = literalExpression "ps: [ ]";
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression "(ps: with ps; [ python-language-server ])";
|
2017-11-02 18:34:42 +01:00
|
|
|
description = ''
|
2018-11-27 12:21:37 +01:00
|
|
|
A function in python.withPackages format, which returns a
|
2018-09-08 17:10:32 +02:00
|
|
|
list of Python 3 packages required for your plugins to work.
|
2017-11-02 18:34:42 +01:00
|
|
|
'';
|
|
|
|
};
|
2018-01-31 09:14:01 +01:00
|
|
|
|
2022-02-16 16:38:10 +01:00
|
|
|
extraLuaPackages = mkOption {
|
|
|
|
type = with types; either extraLua51PackageType (listOf package);
|
|
|
|
default = [ ];
|
2022-06-13 19:57:41 +02:00
|
|
|
defaultText = literalExpression "[ ]";
|
2022-02-16 16:38:10 +01:00
|
|
|
example = literalExpression "(ps: with ps; [ luautf8 ])";
|
|
|
|
description = ''
|
|
|
|
A function in lua5_1.withPackages format, which returns a
|
|
|
|
list of Lua packages required for your plugins to work.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-07-27 15:59:50 +02:00
|
|
|
generatedConfigViml = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
visible = true;
|
|
|
|
readOnly = true;
|
|
|
|
description = ''
|
|
|
|
Generated vimscript config.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-01-27 16:27:35 +01:00
|
|
|
generatedConfigs = mkOption {
|
|
|
|
type = types.attrsOf types.lines;
|
|
|
|
visible = true;
|
|
|
|
readOnly = true;
|
|
|
|
example = literalExpression ''
|
|
|
|
{
|
|
|
|
viml = '''
|
|
|
|
" Generated by home-manager
|
2022-08-23 22:02:05 +02:00
|
|
|
map <leader> ,
|
2022-01-27 16:27:35 +01:00
|
|
|
''';
|
|
|
|
|
|
|
|
lua = '''
|
|
|
|
-- Generated by home-manager
|
|
|
|
vim.opt.background = "dark"
|
|
|
|
''';
|
|
|
|
}'';
|
|
|
|
description = ''
|
|
|
|
Generated configurations with as key their language (set via type).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2019-02-04 06:57:26 +01:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.neovim-unwrapped;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.neovim-unwrapped";
|
2019-02-04 06:57:26 +01:00
|
|
|
description = "The package to use for the neovim binary.";
|
|
|
|
};
|
|
|
|
|
2019-08-10 13:55:05 +02:00
|
|
|
finalPackage = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
visible = false;
|
|
|
|
readOnly = true;
|
|
|
|
description = "Resulting customized neovim package.";
|
|
|
|
};
|
|
|
|
|
2019-08-18 15:20:17 +02:00
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example = ''
|
|
|
|
set nobackup
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Custom vimrc lines.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-10-10 16:15:42 +02:00
|
|
|
extraPackages = mkOption {
|
|
|
|
type = with types; listOf package;
|
|
|
|
default = [ ];
|
2022-06-13 19:57:41 +02:00
|
|
|
example = literalExpression "[ pkgs.shfmt ]";
|
2020-10-10 16:15:42 +02:00
|
|
|
description = "Extra packages available to nvim.";
|
|
|
|
};
|
|
|
|
|
2019-08-18 15:20:17 +02:00
|
|
|
plugins = mkOption {
|
2020-09-25 02:08:39 +02:00
|
|
|
type = with types; listOf (either package pluginWithConfigType);
|
2019-08-18 15:20:17 +02:00
|
|
|
default = [ ];
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2020-09-25 02:08:39 +02:00
|
|
|
with pkgs.vimPlugins; [
|
|
|
|
yankring
|
|
|
|
vim-nix
|
|
|
|
{ plugin = vim-startify;
|
|
|
|
config = "let g:startify_change_to_vcs_root = 0";
|
|
|
|
}
|
|
|
|
]
|
|
|
|
'';
|
2019-08-18 15:20:17 +02:00
|
|
|
description = ''
|
2020-09-25 02:08:39 +02:00
|
|
|
List of vim plugins to install optionally associated with
|
|
|
|
configuration to be placed in init.vim.
|
2019-08-18 15:20:17 +02:00
|
|
|
|
|
|
|
</para><para>
|
|
|
|
|
|
|
|
This option is mutually exclusive with <varname>configure</varname>.
|
2018-01-31 09:14:01 +01:00
|
|
|
'';
|
|
|
|
};
|
2021-07-26 04:40:07 +02:00
|
|
|
|
|
|
|
coc = {
|
|
|
|
enable = mkEnableOption "Coc";
|
|
|
|
|
2022-05-21 19:12:29 +02:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.vimPlugins.coc-nvim;
|
|
|
|
defaultText = literalExpression "pkgs.vimPlugins.coc-nvim";
|
|
|
|
description = "The package to use for the CoC plugin.";
|
|
|
|
};
|
|
|
|
|
2021-07-26 04:40:07 +02:00
|
|
|
settings = mkOption {
|
|
|
|
type = jsonFormat.type;
|
|
|
|
default = { };
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2021-07-26 04:40:07 +02:00
|
|
|
{
|
|
|
|
"suggest.noselect" = true;
|
|
|
|
"suggest.enablePreview" = true;
|
|
|
|
"suggest.enablePreselect" = false;
|
|
|
|
"suggest.disableKind" = true;
|
|
|
|
languageserver = {
|
|
|
|
haskell = {
|
|
|
|
command = "haskell-language-server-wrapper";
|
|
|
|
args = [ "--lsp" ];
|
|
|
|
rootPatterns = [
|
|
|
|
"*.cabal"
|
|
|
|
"stack.yaml"
|
|
|
|
"cabal.project"
|
|
|
|
"package.yaml"
|
|
|
|
"hie.yaml"
|
|
|
|
];
|
|
|
|
filetypes = [ "haskell" "lhaskell" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Extra configuration lines to add to
|
|
|
|
<filename>$XDG_CONFIG_HOME/nvim/coc-settings.json</filename>
|
|
|
|
See
|
|
|
|
<link xlink:href="https://github.com/neoclide/coc.nvim/wiki/Using-the-configuration-file" />
|
|
|
|
for options.
|
|
|
|
'';
|
|
|
|
};
|
2022-03-18 03:43:03 +01:00
|
|
|
|
|
|
|
pluginConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = "Script to configure CoC. Must be viml.";
|
|
|
|
};
|
2021-07-26 04:40:07 +02:00
|
|
|
};
|
2017-11-02 18:34:42 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-12-29 20:26:02 +01:00
|
|
|
config = let
|
2022-08-23 22:02:05 +02:00
|
|
|
defaultPlugin = {
|
|
|
|
type = "viml";
|
|
|
|
plugin = null;
|
2022-09-22 10:39:55 +02:00
|
|
|
config = null;
|
2022-08-23 22:02:05 +02:00
|
|
|
optional = false;
|
|
|
|
runtime = { };
|
|
|
|
};
|
|
|
|
|
|
|
|
# transform all plugins into a standardized attrset
|
|
|
|
pluginsNormalized =
|
|
|
|
map (x: defaultPlugin // (if (x ? plugin) then x else { plugin = x; }))
|
|
|
|
allPlugins;
|
|
|
|
|
2022-01-27 16:27:35 +01:00
|
|
|
suppressNotVimlConfig = p:
|
2022-09-22 10:39:55 +02:00
|
|
|
if p.type != "viml" then p // { config = null; } else p;
|
2022-01-27 16:27:35 +01:00
|
|
|
|
2020-12-29 20:26:02 +01:00
|
|
|
neovimConfig = pkgs.neovimUtils.makeNeovimConfig {
|
2022-03-18 03:43:03 +01:00
|
|
|
inherit (cfg) extraPython3Packages withPython3 withRuby viAlias vimAlias;
|
2022-06-22 22:14:18 +02:00
|
|
|
withNodeJs = cfg.withNodeJs || cfg.coc.enable;
|
2022-03-18 03:43:03 +01:00
|
|
|
plugins = map suppressNotVimlConfig pluginsNormalized;
|
2021-05-27 22:05:20 +02:00
|
|
|
customRC = cfg.extraConfig;
|
2020-12-29 20:26:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
in mkIf cfg.enable {
|
2019-08-18 15:20:17 +02:00
|
|
|
|
2021-07-27 15:59:50 +02:00
|
|
|
programs.neovim.generatedConfigViml = neovimConfig.neovimRcContent;
|
|
|
|
|
2022-01-27 16:27:35 +01:00
|
|
|
programs.neovim.generatedConfigs = let
|
|
|
|
grouped = lib.lists.groupBy (x: x.type) pluginsNormalized;
|
2022-02-25 14:35:13 +01:00
|
|
|
concatConfigs = lib.concatMapStrings (p: p.config);
|
2022-09-22 10:39:55 +02:00
|
|
|
configsOnly = lib.foldl
|
|
|
|
(acc: p: if p.config != null then acc ++ [ (p.config) ] else acc) [ ];
|
|
|
|
in mapAttrs (name: vals: lib.concatStringsSep "\n" (configsOnly vals))
|
|
|
|
grouped;
|
2022-01-27 16:27:35 +01:00
|
|
|
|
2019-08-10 13:55:05 +02:00
|
|
|
home.packages = [ cfg.finalPackage ];
|
|
|
|
|
2022-09-22 10:39:55 +02:00
|
|
|
xdg.configFile =
|
|
|
|
let hasLuaConfig = hasAttr "lua" config.programs.neovim.generatedConfigs;
|
|
|
|
in mkMerge (
|
|
|
|
# writes runtime
|
|
|
|
(map (x: x.runtime) pluginsNormalized) ++ [{
|
2022-09-23 13:33:17 +02:00
|
|
|
"nvim/init-home-manager.vim" =
|
|
|
|
mkIf (neovimConfig.neovimRcContent != "") {
|
|
|
|
text = neovimConfig.neovimRcContent;
|
|
|
|
};
|
2022-09-22 10:39:55 +02:00
|
|
|
"nvim/init.lua" = let
|
|
|
|
luaRcContent =
|
|
|
|
lib.optionalString (neovimConfig.neovimRcContent != "")
|
2022-09-23 13:33:17 +02:00
|
|
|
"vim.cmd [[source ${config.xdg.configHome}/nvim/init-home-manager.vim]]"
|
2022-09-22 10:39:55 +02:00
|
|
|
+ lib.optionalString hasLuaConfig
|
|
|
|
config.programs.neovim.generatedConfigs.lua;
|
|
|
|
in mkIf (luaRcContent != "") { text = luaRcContent; };
|
|
|
|
|
|
|
|
"nvim/coc-settings.json" = mkIf cfg.coc.enable {
|
|
|
|
source = jsonFormat.generate "coc-settings.json" cfg.coc.settings;
|
|
|
|
};
|
|
|
|
}]);
|
2021-07-26 04:40:07 +02:00
|
|
|
|
2020-12-29 20:26:02 +01:00
|
|
|
programs.neovim.finalPackage = pkgs.wrapNeovimUnstable cfg.package
|
|
|
|
(neovimConfig // {
|
|
|
|
wrapperArgs = (lib.escapeShellArgs neovimConfig.wrapperArgs) + " "
|
2022-02-16 16:38:10 +01:00
|
|
|
+ extraMakeWrapperArgs + " " + extraMakeWrapperLuaCArgs + " "
|
|
|
|
+ extraMakeWrapperLuaArgs;
|
2021-06-03 21:37:53 +02:00
|
|
|
wrapRc = false;
|
2020-12-29 20:26:02 +01:00
|
|
|
});
|
2020-02-27 01:52:04 +01:00
|
|
|
|
|
|
|
programs.bash.shellAliases = mkIf cfg.vimdiffAlias { vimdiff = "nvim -d"; };
|
|
|
|
programs.fish.shellAliases = mkIf cfg.vimdiffAlias { vimdiff = "nvim -d"; };
|
2020-10-12 22:50:49 +02:00
|
|
|
programs.zsh.shellAliases = mkIf cfg.vimdiffAlias { vimdiff = "nvim -d"; };
|
2017-11-02 18:34:42 +01:00
|
|
|
};
|
|
|
|
}
|