background opacity of terminal changes when nvim opens using kitty

This commit is contained in:
venus
2026-03-10 00:13:13 -05:00
parent 7c602e62bc
commit 99638caa52
5 changed files with 39 additions and 11 deletions

View File

@@ -52,16 +52,6 @@ vim.o.scrolloff = 25
-- instead raise a dialog asking if you wish to save the current file(s)
-- See `:help 'confirm'`
vim.o.confirm = true
-- [[Keybinds]]
-- See `:help vim.keymap.set()`
-- See `:help hlsearch`
-- [[ Basic Autocommands ]]
vim.api.nvim_create_autocmd('TextYankPost', {
desc = 'Highlight when yanking (copying) text',
group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }),
callback = function()
vim.hl.on_yank()
end,
})
vim.opt.termguicolors = true -- required for colorizer