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 { };
|
|
|
|
|
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
|
2023-05-22 22:48:23 +02:00
|
|
|
type = fileType "programs.neovim.plugins._.runtime"
|
|
|
|
"<varname>xdg.configHome/nvim</varname>" "nvim";
|
2022-08-23 22:02:05 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
neovim: fix extraLuaPackages type. (#3533)
Assigning to `programs.neovim.extraLuaPackages` a function taking a lua package set as input
and returning a list of packages, as described in the documentation,
threw an error because the rest of the code assumed that the value was always a plain list.
Using `lib.types.coercedTo`, we can accept such functions, as per the documentation,
as well as plain lists, which we then convert to a function ignoring its input argument.
We print a warning when a plain list is assigned, since the function
form is preferred, as it ensures that the right lua package set is used.
For the lua packages, we also get the lua package set from the
finalPackage, to make sure that we are always using the same package set
as the actual unwrapped neovim package being built.
For `programs.neovim.extraPythonPackages` I did the same.
I updated the test case so that we test both ways of setting these options.
2022-12-29 01:48:45 +01:00
|
|
|
luaPackages = cfg.finalPackage.unwrapped.lua.pkgs;
|
|
|
|
resolvedExtraLuaPackages = cfg.extraLuaPackages luaPackages;
|
|
|
|
|
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}"'';
|
neovim: fix extraLuaPackages type. (#3533)
Assigning to `programs.neovim.extraLuaPackages` a function taking a lua package set as input
and returning a list of packages, as described in the documentation,
threw an error because the rest of the code assumed that the value was always a plain list.
Using `lib.types.coercedTo`, we can accept such functions, as per the documentation,
as well as plain lists, which we then convert to a function ignoring its input argument.
We print a warning when a plain list is assigned, since the function
form is preferred, as it ensures that the right lua package set is used.
For the lua packages, we also get the lua package set from the
finalPackage, to make sure that we are always using the same package set
as the actual unwrapped neovim package being built.
For `programs.neovim.extraPythonPackages` I did the same.
I updated the test case so that we test both ways of setting these options.
2022-12-29 01:48:45 +01:00
|
|
|
extraMakeWrapperLuaCArgs =
|
|
|
|
lib.optionalString (resolvedExtraLuaPackages != [ ]) ''
|
|
|
|
--suffix LUA_CPATH ";" "${
|
|
|
|
lib.concatMapStringsSep ";" luaPackages.getLuaCPath
|
|
|
|
resolvedExtraLuaPackages
|
|
|
|
}"'';
|
|
|
|
extraMakeWrapperLuaArgs = lib.optionalString (resolvedExtraLuaPackages != [ ])
|
|
|
|
''
|
|
|
|
--suffix LUA_PATH ";" "${
|
|
|
|
lib.concatMapStringsSep ";" luaPackages.getLuaPath
|
|
|
|
resolvedExtraLuaPackages
|
|
|
|
}"'';
|
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 {
|
neovim: fix extraLuaPackages type. (#3533)
Assigning to `programs.neovim.extraLuaPackages` a function taking a lua package set as input
and returning a list of packages, as described in the documentation,
threw an error because the rest of the code assumed that the value was always a plain list.
Using `lib.types.coercedTo`, we can accept such functions, as per the documentation,
as well as plain lists, which we then convert to a function ignoring its input argument.
We print a warning when a plain list is assigned, since the function
form is preferred, as it ensures that the right lua package set is used.
For the lua packages, we also get the lua package set from the
finalPackage, to make sure that we are always using the same package set
as the actual unwrapped neovim package being built.
For `programs.neovim.extraPythonPackages` I did the same.
I updated the test case so that we test both ways of setting these options.
2022-12-29 01:48:45 +01:00
|
|
|
# In case we get a plain list, we need to turn it into a function,
|
|
|
|
# as expected by the function in nixpkgs.
|
|
|
|
# The only way to do so is to call `const`, which will ignore its input.
|
|
|
|
type = with types;
|
|
|
|
let fromType = listOf package;
|
|
|
|
in coercedTo fromType (flip warn const ''
|
|
|
|
Assigning a plain list to extraPython3Packages is deprecated.
|
|
|
|
Please assign a function taking a package set as argument, so
|
|
|
|
extraPython3Packages = [ pkgs.python3Packages.xxx ];
|
|
|
|
should become
|
|
|
|
extraPython3Packages = ps: [ ps.xxx ];
|
|
|
|
'') (functionTo fromType);
|
|
|
|
default = _: [ ];
|
2022-06-13 19:57:41 +02:00
|
|
|
defaultText = literalExpression "ps: [ ]";
|
neovim: fix extraLuaPackages type. (#3533)
Assigning to `programs.neovim.extraLuaPackages` a function taking a lua package set as input
and returning a list of packages, as described in the documentation,
threw an error because the rest of the code assumed that the value was always a plain list.
Using `lib.types.coercedTo`, we can accept such functions, as per the documentation,
as well as plain lists, which we then convert to a function ignoring its input argument.
We print a warning when a plain list is assigned, since the function
form is preferred, as it ensures that the right lua package set is used.
For the lua packages, we also get the lua package set from the
finalPackage, to make sure that we are always using the same package set
as the actual unwrapped neovim package being built.
For `programs.neovim.extraPythonPackages` I did the same.
I updated the test case so that we test both ways of setting these options.
2022-12-29 01:48:45 +01:00
|
|
|
example =
|
|
|
|
literalExpression "pyPkgs: with pyPkgs; [ python-language-server ]";
|
2017-11-02 18:34:42 +01:00
|
|
|
description = ''
|
neovim: fix extraLuaPackages type. (#3533)
Assigning to `programs.neovim.extraLuaPackages` a function taking a lua package set as input
and returning a list of packages, as described in the documentation,
threw an error because the rest of the code assumed that the value was always a plain list.
Using `lib.types.coercedTo`, we can accept such functions, as per the documentation,
as well as plain lists, which we then convert to a function ignoring its input argument.
We print a warning when a plain list is assigned, since the function
form is preferred, as it ensures that the right lua package set is used.
For the lua packages, we also get the lua package set from the
finalPackage, to make sure that we are always using the same package set
as the actual unwrapped neovim package being built.
For `programs.neovim.extraPythonPackages` I did the same.
I updated the test case so that we test both ways of setting these options.
2022-12-29 01:48:45 +01:00
|
|
|
The extra Python 3 packages required for your plugins to work.
|
|
|
|
This option accepts a function that takes a Python 3 package set as an argument,
|
|
|
|
and selects the required Python 3 packages from this package set.
|
|
|
|
See the example for more info.
|
2017-11-02 18:34:42 +01:00
|
|
|
'';
|
|
|
|
};
|
2018-01-31 09:14:01 +01:00
|
|
|
|
neovim: fix extraLuaPackages type. (#3533)
Assigning to `programs.neovim.extraLuaPackages` a function taking a lua package set as input
and returning a list of packages, as described in the documentation,
threw an error because the rest of the code assumed that the value was always a plain list.
Using `lib.types.coercedTo`, we can accept such functions, as per the documentation,
as well as plain lists, which we then convert to a function ignoring its input argument.
We print a warning when a plain list is assigned, since the function
form is preferred, as it ensures that the right lua package set is used.
For the lua packages, we also get the lua package set from the
finalPackage, to make sure that we are always using the same package set
as the actual unwrapped neovim package being built.
For `programs.neovim.extraPythonPackages` I did the same.
I updated the test case so that we test both ways of setting these options.
2022-12-29 01:48:45 +01:00
|
|
|
# We get the Lua package from the final package and use its
|
|
|
|
# Lua packageset to evaluate the function that this option was set to.
|
|
|
|
# This ensures that we always use the same Lua version as the Neovim package.
|
2022-02-16 16:38:10 +01:00
|
|
|
extraLuaPackages = mkOption {
|
neovim: fix extraLuaPackages type. (#3533)
Assigning to `programs.neovim.extraLuaPackages` a function taking a lua package set as input
and returning a list of packages, as described in the documentation,
threw an error because the rest of the code assumed that the value was always a plain list.
Using `lib.types.coercedTo`, we can accept such functions, as per the documentation,
as well as plain lists, which we then convert to a function ignoring its input argument.
We print a warning when a plain list is assigned, since the function
form is preferred, as it ensures that the right lua package set is used.
For the lua packages, we also get the lua package set from the
finalPackage, to make sure that we are always using the same package set
as the actual unwrapped neovim package being built.
For `programs.neovim.extraPythonPackages` I did the same.
I updated the test case so that we test both ways of setting these options.
2022-12-29 01:48:45 +01:00
|
|
|
type = with types;
|
|
|
|
let fromType = listOf package;
|
|
|
|
in coercedTo fromType (flip warn const ''
|
|
|
|
Assigning a plain list to extraLuaPackages is deprecated.
|
|
|
|
Please assign a function taking a package set as argument, so
|
|
|
|
extraLuaPackages = [ pkgs.lua51Packages.xxx ];
|
|
|
|
should become
|
|
|
|
extraLuaPackages = ps: [ ps.xxx ];
|
|
|
|
'') (functionTo fromType);
|
|
|
|
default = _: [ ];
|
|
|
|
defaultText = literalExpression "ps: [ ]";
|
|
|
|
example = literalExpression "luaPkgs: with luaPkgs; [ luautf8 ]";
|
2022-02-16 16:38:10 +01:00
|
|
|
description = ''
|
neovim: fix extraLuaPackages type. (#3533)
Assigning to `programs.neovim.extraLuaPackages` a function taking a lua package set as input
and returning a list of packages, as described in the documentation,
threw an error because the rest of the code assumed that the value was always a plain list.
Using `lib.types.coercedTo`, we can accept such functions, as per the documentation,
as well as plain lists, which we then convert to a function ignoring its input argument.
We print a warning when a plain list is assigned, since the function
form is preferred, as it ensures that the right lua package set is used.
For the lua packages, we also get the lua package set from the
finalPackage, to make sure that we are always using the same package set
as the actual unwrapped neovim package being built.
For `programs.neovim.extraPythonPackages` I did the same.
I updated the test case so that we test both ways of setting these options.
2022-12-29 01:48:45 +01:00
|
|
|
The extra Lua packages required for your plugins to work.
|
|
|
|
This option accepts a function that takes a Lua package set as an argument,
|
|
|
|
and selects the required Lua packages from this package set.
|
|
|
|
See the example for more info.
|
2022-02-16 16:38:10 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
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.";
|
|
|
|
};
|
|
|
|
|
2022-12-29 22:36:05 +01:00
|
|
|
defaultEditor = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to configure <command>nvim</command> as the default
|
|
|
|
editor using the <envar>EDITOR</envar> environment variable.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2019-08-18 15:20:17 +02:00
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example = ''
|
|
|
|
set nobackup
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Custom vimrc lines.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2023-02-05 12:09:26 +01:00
|
|
|
extraLuaConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example = ''
|
|
|
|
vim.opt.nobackup = true
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Custom lua 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 {
|
neovim: fix extraLuaPackages type. (#3533)
Assigning to `programs.neovim.extraLuaPackages` a function taking a lua package set as input
and returning a list of packages, as described in the documentation,
threw an error because the rest of the code assumed that the value was always a plain list.
Using `lib.types.coercedTo`, we can accept such functions, as per the documentation,
as well as plain lists, which we then convert to a function ignoring its input argument.
We print a warning when a plain list is assigned, since the function
form is preferred, as it ensures that the right lua package set is used.
For the lua packages, we also get the lua package set from the
finalPackage, to make sure that we are always using the same package set
as the actual unwrapped neovim package being built.
For `programs.neovim.extraPythonPackages` I did the same.
I updated the test case so that we test both ways of setting these options.
2022-12-29 01:48:45 +01:00
|
|
|
inherit (jsonFormat) type;
|
2021-07-26 04:40:07 +02:00
|
|
|
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
|
neovim: fix extraLuaPackages type. (#3533)
Assigning to `programs.neovim.extraLuaPackages` a function taking a lua package set as input
and returning a list of packages, as described in the documentation,
threw an error because the rest of the code assumed that the value was always a plain list.
Using `lib.types.coercedTo`, we can accept such functions, as per the documentation,
as well as plain lists, which we then convert to a function ignoring its input argument.
We print a warning when a plain list is assigned, since the function
form is preferred, as it ensures that the right lua package set is used.
For the lua packages, we also get the lua package set from the
finalPackage, to make sure that we are always using the same package set
as the actual unwrapped neovim package being built.
For `programs.neovim.extraPythonPackages` I did the same.
I updated the test case so that we test both ways of setting these options.
2022-12-29 01:48:45 +01:00
|
|
|
(acc: p: if p.config != null then acc ++ [ p.config ] else acc) [ ];
|
2022-09-22 10:39:55 +02:00
|
|
|
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-12-29 22:36:05 +01:00
|
|
|
home.sessionVariables = mkIf cfg.defaultEditor { EDITOR = "nvim"; };
|
|
|
|
|
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) ++ [{
|
|
|
|
"nvim/init.lua" = let
|
|
|
|
luaRcContent =
|
|
|
|
lib.optionalString (neovimConfig.neovimRcContent != "")
|
neovim: Source neovimRcContent directly from store (#3444)
The previous version linked the file into home, then sourced that. Since
nothing else expects that file to be there, this is unnecessary.
Additionally, doing so made it impossible to test a built config without
switching, e.g. using `XDG_CONFIG_HOME=… nvim` or `nvim -u`. This
remedies that, at least for this particular reference.
To test this, change from asserting contents of the config file to
actually starting nvim, outputting sentinel values, and then asserting
their values are present. This way it’s tested that nvim loaded the
config, rather than that some config is in a specific place.
This is all in one commit as the test, as written now, would not have
worked before since the previously hard-coded home path was not an
actual file in the test environment.
2022-11-30 17:19:31 +01:00
|
|
|
"vim.cmd [[source ${
|
|
|
|
pkgs.writeText "nvim-init-home-manager.vim"
|
|
|
|
neovimConfig.neovimRcContent
|
2023-02-05 12:09:26 +01:00
|
|
|
}]]" + config.programs.neovim.extraLuaConfig
|
|
|
|
+ lib.optionalString hasLuaConfig
|
2022-09-22 10:39:55 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|