mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 10:15:59 +01:00
11 lines
166 B
Nix
11 lines
166 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib) mkEnableOption;
|
|
in {
|
|
options.vim.languages.elixir = {
|
|
enable = mkEnableOption "Elixir language support";
|
|
};
|
|
}
|