1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2024-12-28 18:39:49 +01:00
neovim-flake/modules/utility/telescope/telescope.nix
2023-04-02 19:59:08 +03:00

11 lines
160 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; {
options.vim.telescope = {
enable = mkEnableOption "Enable multi-purpose telescope utility";
};
}