summaryrefslogblamecommitdiff
path: root/docs/desktop/remote_nvim.md
blob: 2b987623e06081046f883abbeffa611c086d6cbd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                                                                                                                          
# Remote Nvim Plugin Install

## Installing Plugin that calls setup

This [Remote Nvim Plugin](https://github.com/amitds1997/remote-nvim.nvim/tree/main) 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](https://github.com/junegunn/vim-plug/issues/1252)

Our config will have this for remote-nvim plugin.

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