diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md index 7d7eee34..4f71cf34 100644 --- a/docs/release-notes/rl-0.8.md +++ b/docs/release-notes/rl-0.8.md @@ -319,7 +319,6 @@ - Fix oil config referencing snacks - Add [flash.nvim] plugin to `vim.utility.motion.flash-nvim` -- Fix default telescope ignore list entry for '.git/' to properly match [rrvsh](https://github.com/rrvsh): diff --git a/modules/plugins/assistant/codecompanion/codecompanion-nvim.nix b/modules/plugins/assistant/codecompanion/codecompanion-nvim.nix index 8e5ed4cc..a73f1566 100644 --- a/modules/plugins/assistant/codecompanion/codecompanion-nvim.nix +++ b/modules/plugins/assistant/codecompanion/codecompanion-nvim.nix @@ -13,9 +13,7 @@ in { mkEnableOption "" // { default = true; - description = '' - Whether to enable code being sent to the LLM. - ''; + description = "code from being sent to the LLM."; }; log_level = mkOption { @@ -37,10 +35,7 @@ in { mkEnableOption "" // { default = true; - description = '' - Whether to enable a diff view - to see the changes made by the LLM. - ''; + description = "a diff view to see the changes made by the LLM."; }; close_chat_at = mkOption { @@ -78,7 +73,7 @@ in { mkEnableOption "" // { default = true; - description = "Whether to enable automatic page scrolling."; + description = "automatic page scrolling."; }; show_settings = mkEnableOption '' @@ -100,18 +95,14 @@ in { mkEnableOption "" // { default = true; - description = '' - Whether to enable references in the chat buffer. - ''; + description = "references in the chat buffer."; }; show_token_count = mkEnableOption "" // { default = true; - description = '' - Whether to enable the token count for each response. - ''; + description = "the token count for each response."; }; intro_message = mkOption { @@ -174,10 +165,7 @@ in { mkEnableOption "" // { default = true; - description = '' - Whether to enable showing default - actions in the action palette. - ''; + description = "showing default actions in the action palette."; }; show_default_prompt_library = @@ -185,8 +173,7 @@ in { // { default = true; description = '' - Whether to enable showing default - prompt library in the action palette. + showing default prompt library in the action palette. ''; }; }; diff --git a/modules/plugins/utility/fzf-lua/fzf-lua.nix b/modules/plugins/utility/fzf-lua/fzf-lua.nix index 0b242864..dbdf320f 100644 --- a/modules/plugins/utility/fzf-lua/fzf-lua.nix +++ b/modules/plugins/utility/fzf-lua/fzf-lua.nix @@ -4,7 +4,7 @@ pkgs, ... }: let - inherit (lib.types) enum str; + inherit (lib.types) enum package; inherit (lib.options) mkEnableOption mkOption; inherit (lib.nvim.types) mkPluginSetupOption borderType; in { @@ -12,9 +12,9 @@ in { enable = mkEnableOption "fzf-lua"; setupOpts = mkPluginSetupOption "fzf-lua" { fzf_bin = mkOption { - type = str; + type = package; default = "${lib.getExe pkgs.fzf}"; - description = "Path to fzf executable"; + description = "fzf package to use"; }; winopts.border = mkOption { type = borderType; diff --git a/modules/plugins/utility/telescope/telescope.nix b/modules/plugins/utility/telescope/telescope.nix index 9d63c3cf..beacc990 100644 --- a/modules/plugins/utility/telescope/telescope.nix +++ b/modules/plugins/utility/telescope/telescope.nix @@ -117,7 +117,7 @@ file_ignore_patterns = mkOption { description = "A table of lua regex that define the files that should be ignored."; type = listOf str; - default = ["node_modules" "%.git/" "dist/" "build/" "target/" "result/"]; + default = ["node_modules" ".git/" "dist/" "build/" "target/" "result/"]; }; color_devicons = mkOption { description = "Boolean if devicons should be enabled or not.";