Skip to content

Remote Nvim Plugin Install

Installing Plugin that calls setup

This Remote Nvim Plugin is the plugin that we are using for remote development.

It requires lazy.nvim for install, but we are using vim-plug.

To address this issue, we need to call setup in our nvim config, such as in this example issue: Reference Github Issue

Our config will have this for remote-nvim plugin.

lua <<EOF
require("remote-nvim").setup({
    transparent_background = true, -- disables setting the background color.
})
EOF