begin lua migration
This commit is contained in:
12
nvim/lua/theme.lua
Normal file
12
nvim/lua/theme.lua
Normal 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",
|
||||
})
|
||||
Reference in New Issue
Block a user