transparent bg

This commit is contained in:
ju09279
2024-05-11 10:11:01 +02:00
committed by juli0n21
parent b5e2f27d14
commit 2fd108e00a

View File

@@ -850,6 +850,8 @@ require('lazy').setup({
-- You can configure highlights by doing something like: -- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none' vim.cmd.hi 'Comment gui=none'
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' })
end, end,
}, },
@@ -974,7 +976,7 @@ require('lazy').setup({
harpoon:list():next() harpoon:list():next()
end) end)
vim.keymap.set('n', 'T', function() vim.keymap.set('n', 'C-e', function()
toggle_telescope(harpoon:list()) toggle_telescope(harpoon:list())
end, { desc = 'Open harpoon window' }) end, { desc = 'Open harpoon window' })
end, end,