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