feat(nvim): enable floating and popupmenu transparency in Neovide

This commit is contained in:
Price Hiller 2024-02-26 17:14:26 -06:00
parent c18d278aaa
commit 2295449393
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -1,5 +1,9 @@
vim.opt.linespace = -1
-- Floating and Popupmenu Transparency
vim.opt.winblend = 10
vim.opt.pumblend = 10
-- Allow clipboard copy paste in neovim
vim.keymap.set("n", "<D-s>", ":w<CR>", { noremap = true, silent = true }) -- Save
vim.keymap.set("v", "<D-c>", '"+y', { noremap = true, silent = true }) -- Copy