Home

Awesome

transparent.nvim

If you love transparent term, but your favourite Neovim color scheme doesn't

If your are vim (Not neovim) user, Use vim-transparent instead.

Screenshots

With transparent.nvim (example color scheme is eva01)

eva01 theme with transparent.nvim

Without vim-transparent

eva01 theme without transparent.nvim

Installation

lazy.nvim

{
    'tribela/transparent.nvim',
    event = 'VimEnter',
    config = true,
}

vim-plug

Plug 'tribela/transparent.nvim'

lua << EOF
require('transparent').setup({})
EOF

Configuration

{
    auto = true, -- Automatically applies transparent
    extra_groups = {}, -- If you want to add some groups to be transparent. eg: { 'Pmenu', 'CocFloating' }
    excludes = {}, -- If you want to excludes from default transparent groups. eg: { 'LineNr' }
}

Usage

transparent.nvim automatically transparent all of highlight settings.

You can disable it by :TransparentDisable and re-enable it by :TransparentEnable, Toggle it by :TransparentToggle