How to have telescope search include hidden files by default?

This page summarizes the projects mentioned and recommended in the original post on /r/neovim

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • trouble.nvim

    🚦 A pretty diagnostics, references, telescope results, quickfix and location list to help you solve all the trouble your code is causing.

    local telescope = require("telescope") local trouble_provider = require("trouble.providers.telescope") telescope.setup({ live_grep = { --@usage don't include the filename in the search results only_sort_text = true, theme = "dropdown", }, extensions = { fzf = { fuzzy = true, -- false will only do exact matching override_generic_sorter = true, -- override the generic sorter override_file_sorter = true, -- override the file sorter case_mode = "smart_case", -- or "ignore_case" or "respect_case" }, }, defaults = { vimgrep_arguments = { 'rg', '--color=never', '--no-heading', '--with-filename', '--line-number', '--column', '--hidden', '--smart-case', '--glob "!.git"', }, mappings = { i = { -- source: https://github.com/folke/trouble.nvim [""] = trouble_provider.open_with_trouble, }, n = { -- source: https://github.com/folke/trouble.nvim [""] = trouble_provider.open_with_trouble, }, }, set_env = { ["COLORTERM"] = "truecolor" }, -- default = nil, }, }) -- source: https://github.com/nvim-telescope/telescope-fzf-native.nvim require("telescope").load_extension("fzf")

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • telescope-fzf-native.nvim

    FZF sorter for telescope written in c

    local telescope = require("telescope") local trouble_provider = require("trouble.providers.telescope") telescope.setup({ live_grep = { --@usage don't include the filename in the search results only_sort_text = true, theme = "dropdown", }, extensions = { fzf = { fuzzy = true, -- false will only do exact matching override_generic_sorter = true, -- override the generic sorter override_file_sorter = true, -- override the file sorter case_mode = "smart_case", -- or "ignore_case" or "respect_case" }, }, defaults = { vimgrep_arguments = { 'rg', '--color=never', '--no-heading', '--with-filename', '--line-number', '--column', '--hidden', '--smart-case', '--glob "!.git"', }, mappings = { i = { -- source: https://github.com/folke/trouble.nvim [""] = trouble_provider.open_with_trouble, }, n = { -- source: https://github.com/folke/trouble.nvim [""] = trouble_provider.open_with_trouble, }, }, set_env = { ["COLORTERM"] = "truecolor" }, -- default = nil, }, }) -- source: https://github.com/nvim-telescope/telescope-fzf-native.nvim require("telescope").load_extension("fzf")

  • dotfiles

    My configuration and related files for various systems and applications (by kdien)

    Here's my config that includes hidden files.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • better Telescope live grep UI?

    3 projects | /r/neovim | 23 Nov 2022
  • How to copy LSP diagnostics from folke/trouble to quickfix window?

    1 project | /r/neovim | 2 Dec 2023
  • Linting/formatting and LSP

    1 project | /r/neovim | 8 Sep 2023
  • Lsp and files outside nvim/lua/

    1 project | /r/neovim | 30 Aug 2023
  • Archiving Null-Ls

    1 project | news.ycombinator.com | 10 Jul 2023

Did you konow that C is
the 7th most popular programming language
based on number of metions?