From da8e34e67db6331fcc331f3ba42a8d3801f417f4 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 23 Dec 2022 16:20:04 +0100 Subject: [PATCH] chore(nvim): add telescope background to transparency --- nvim/after/plugin/telescope.lua | 3 ++- nvim/after/plugin/transparent.lua | 11 ++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/nvim/after/plugin/telescope.lua b/nvim/after/plugin/telescope.lua index a81dcdc..86d2df0 100644 --- a/nvim/after/plugin/telescope.lua +++ b/nvim/after/plugin/telescope.lua @@ -3,7 +3,8 @@ local telescope = require("telescope") local actions = require("telescope.actions") local opts = { noremap = true, silent = true } -vim.keymap.set("n", "", [[Telescope find_files]], opts) +vim.keymap.set("n", "", [[Telescope find_files]], opts) +vim.keymap.set("n", "", [[Telescope find_files hidden=true]], opts) vim.keymap.set("n", "C", [[Cheatsheet]], opts) vim.keymap.set("n", "F", [[Telescope live_grep]], opts) vim.keymap.set("n", "H", [[Telescope headings]], opts) diff --git a/nvim/after/plugin/transparent.lua b/nvim/after/plugin/transparent.lua index 7591f97..f095fd2 100644 --- a/nvim/after/plugin/transparent.lua +++ b/nvim/after/plugin/transparent.lua @@ -2,15 +2,16 @@ require("transparent").setup({ enable = true, extra_groups = { - "NvimTreeNormal", + "BufferLineBackground", + "BufferLineFill", + "BufferLineIndicatorSelected", + "BufferLineSeparator", "BufferLineTabClose", "BufferlineBufferSelected", - "BufferLineFill", - "BufferLineBackground", - "BufferLineSeparator", - "BufferLineIndicatorSelected", "IndentBlanklineIndent1", "IndentBlanklineIndent2", + "NvimTreeNormal", + "TelescopeNormal", }, exclude = {}, -- table: groups you don't want to clear })