mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-15 23:17:48 +00:00
feat(telescope): add custom setup options
This commit is contained in:
parent
6969124456
commit
82c72fcfbf
2 changed files with 60 additions and 49 deletions
|
|
@ -1,5 +1,59 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib) mkMappingOption mkEnableOption;
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkMappingOption mkEnableOption types mkOption nvim;
|
||||
mkOptOfType = type: default:
|
||||
mkOption {
|
||||
# TODO: description
|
||||
description = "See plugin docs for more info";
|
||||
inherit type default;
|
||||
};
|
||||
|
||||
setupOptions = {
|
||||
defaults = {
|
||||
vimgrep_arguments = mkOptOfType (with types; listOf str) [
|
||||
"${pkgs.ripgrep}/bin/rg"
|
||||
"--color=never"
|
||||
"--no-heading"
|
||||
"--with-filename"
|
||||
"--line-number"
|
||||
"--column"
|
||||
"--smart-case"
|
||||
"--hidden"
|
||||
"--no-ignore"
|
||||
];
|
||||
pickers.find_command = mkOptOfType (with types; listOf str) ["${pkgs.fd}/bin/fd"];
|
||||
prompt_prefix = mkOptOfType types.str " ";
|
||||
selection_caret = mkOptOfType types.str " ";
|
||||
entry_prefix = mkOptOfType types.str " ";
|
||||
initial_mode = mkOptOfType types.str "insert";
|
||||
selection_strategy = mkOptOfType types.str "reset";
|
||||
sorting_strategy = mkOptOfType types.str "ascending";
|
||||
layout_strategy = mkOptOfType types.str "horizontal";
|
||||
layout_config = {
|
||||
horizontal = {
|
||||
prompt_position = mkOptOfType types.str "top";
|
||||
preview_width = mkOptOfType types.float 0.55;
|
||||
results_width = mkOptOfType types.float 0.8;
|
||||
};
|
||||
vertical = {
|
||||
mirror = mkOptOfType types.bool false;
|
||||
};
|
||||
width = mkOptOfType types.float 0.8;
|
||||
height = mkOptOfType types.float 0.8;
|
||||
preview_cutoff = mkOptOfType types.int 120;
|
||||
};
|
||||
file_ignore_patterns = mkOptOfType (types.listOf types.str) ["node_modules" ".git/" "dist/" "build/" "target/" "result/"];
|
||||
color_devicons = mkOptOfType types.bool true;
|
||||
path_display = mkOptOfType (types.listOf types.str) ["absolute"];
|
||||
set_env = {
|
||||
COLORTERM = mkOptOfType types.str "truecolor";
|
||||
};
|
||||
winblend = mkOptOfType types.int 0;
|
||||
};
|
||||
};
|
||||
in {
|
||||
options.vim.telescope = {
|
||||
mappings = {
|
||||
|
|
@ -29,5 +83,7 @@ in {
|
|||
};
|
||||
|
||||
enable = mkEnableOption "telescope.nvim: multi-purpose search and picker utility";
|
||||
|
||||
setupOpts = nvim.types.mkPluginSetupOption "Telescope" setupOptions;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue