chore(nvim): add telescope background to transparency

This commit is contained in:
Stefan Imhoff
2022-12-23 16:20:04 +01:00
parent a4e0372c06
commit da8e34e67d
2 changed files with 8 additions and 6 deletions

View File

@@ -3,7 +3,8 @@ local telescope = require("telescope")
local actions = require("telescope.actions")
local opts = { noremap = true, silent = true }
vim.keymap.set("n", "<C-p>", [[<Cmd>Telescope find_files<CR>]], opts)
vim.keymap.set("n", "<M-p>", [[<Cmd>Telescope find_files<CR>]], opts)
vim.keymap.set("n", "<C-p>", [[<Cmd>Telescope find_files hidden=true<CR>]], opts)
vim.keymap.set("n", "<leader>C", [[<Cmd>Cheatsheet<CR>]], opts)
vim.keymap.set("n", "<leader>F", [[<Cmd>Telescope live_grep<CR>]], opts)
vim.keymap.set("n", "<leader>H", [[<Cmd>Telescope headings<CR>]], opts)