mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
chore(nvim): add telescope background to transparency
This commit is contained in:
@@ -3,7 +3,8 @@ local telescope = require("telescope")
|
|||||||
local actions = require("telescope.actions")
|
local actions = require("telescope.actions")
|
||||||
local opts = { noremap = true, silent = true }
|
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>C", [[<Cmd>Cheatsheet<CR>]], opts)
|
||||||
vim.keymap.set("n", "<leader>F", [[<Cmd>Telescope live_grep<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)
|
vim.keymap.set("n", "<leader>H", [[<Cmd>Telescope headings<CR>]], opts)
|
||||||
|
|||||||
@@ -2,15 +2,16 @@
|
|||||||
require("transparent").setup({
|
require("transparent").setup({
|
||||||
enable = true,
|
enable = true,
|
||||||
extra_groups = {
|
extra_groups = {
|
||||||
"NvimTreeNormal",
|
"BufferLineBackground",
|
||||||
|
"BufferLineFill",
|
||||||
|
"BufferLineIndicatorSelected",
|
||||||
|
"BufferLineSeparator",
|
||||||
"BufferLineTabClose",
|
"BufferLineTabClose",
|
||||||
"BufferlineBufferSelected",
|
"BufferlineBufferSelected",
|
||||||
"BufferLineFill",
|
|
||||||
"BufferLineBackground",
|
|
||||||
"BufferLineSeparator",
|
|
||||||
"BufferLineIndicatorSelected",
|
|
||||||
"IndentBlanklineIndent1",
|
"IndentBlanklineIndent1",
|
||||||
"IndentBlanklineIndent2",
|
"IndentBlanklineIndent2",
|
||||||
|
"NvimTreeNormal",
|
||||||
|
"TelescopeNormal",
|
||||||
},
|
},
|
||||||
exclude = {}, -- table: groups you don't want to clear
|
exclude = {}, -- table: groups you don't want to clear
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user