My custom kickstart.nvim setup
This commit is contained in:
parent
1860184830
commit
c51b67a644
22 changed files with 1005 additions and 43 deletions
24
lua/custom/plugins/transparent.lua
Normal file
24
lua/custom/plugins/transparent.lua
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
-- transparent.nvim plugin configuration
|
||||
-- https://github.com/xiyaowong/transparent.nvim
|
||||
|
||||
return {
|
||||
'xiyaowong/transparent.nvim', -- GitHub repository
|
||||
as = 'transparent', -- Optional: rename the plugin to 'transparent'
|
||||
config = function()
|
||||
require('transparent').setup({
|
||||
groups = { -- table: default groups
|
||||
'Normal', 'NormalNC', 'Comment', 'Constant', 'Special', 'Identifier',
|
||||
'Statement', 'PreProc', 'Type', 'Underlined', 'Todo', 'String', 'Function',
|
||||
'Conditional', 'Repeat', 'Operator', 'Structure', 'LineNr', 'NonText',
|
||||
'SignColumn', 'CursorLine', 'CursorLineNr', 'StatusLine', 'StatusLineNC',
|
||||
'EndOfBuffer',
|
||||
},
|
||||
extra_groups = { -- extra highlight groups to clear
|
||||
'all', -- Also clear background for all highlight groups
|
||||
},
|
||||
exclude_groups = {}, -- exclude these highlight groups from being cleared
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue