begin lua migration

This commit is contained in:
2023-05-04 20:11:25 -04:00
parent a6ac79de70
commit 6d7a383491
9 changed files with 191 additions and 69 deletions

12
nvim/lua/theme.lua Normal file
View File

@@ -0,0 +1,12 @@
local themegroup = vim.api.nvim_create_augroup('themegroup', { clear = true })
vim.api.nvim_create_autocmd('ColorScheme', {
pattern = "*",
group = themegroup,
command = "hi Normal guibg=none ctermbg=none",
})
vim.api.nvim_create_autocmd('ColorScheme', {
pattern = "*",
group = themegroup,
command = "hi NonText guibg=none ctermbg=none",
})