xiyaowong / transparent.nvim

Remove all background colors to make nvim transparent
806 stars 23 forks source link

Install help #22

Closed JiroRauwers closed 1 year ago

JiroRauwers commented 1 year ago

Hey I'm new to nvim, I just installed astrovim to try it out, I got myself lost on how can i add this plugin to my config. Can I get some directions on how to do or where to look out

xiyaowong commented 1 year ago

Example with Packer

wbthomason/packer.nvim

-- init.lua
require("packer").startup(
    function()
        use {
            'xiyaowong/nvim-transparent'
        }
    end
)

Example with Plug

junegunn/vim-plug

" init.vim
call plug#begin('~/.vim/plugged')
Plug 'xiyaowong/nvim-transparent'
call plug#end()

Example with Lazy

folke/lazy.nvim

-- init.lua
require('lazy').setup({
    {
        'xiyaowong/nvim-transparent'
    }
})