diff options
author | Joshua Yun <joshua@joshuayun.com> | 2024-01-23 14:53:19 -0600 |
---|---|---|
committer | Joshua Yun <joshua@joshuayun.com> | 2024-01-23 14:53:19 -0600 |
commit | 3706dc248bda2197f56ac191a7e764a891d13fa9 (patch) | |
tree | 63bfbb7f62be24a9d1b91b17ad5e4779bdff3d0c /docs/desktop | |
parent | 3a294b3292e156903dd5d986120d7ad24737919d (diff) | |
download | wiki-3706dc248bda2197f56ac191a7e764a891d13fa9.tar.gz |
Added remote nvim setup wiki page
Diffstat (limited to 'docs/desktop')
-rw-r--r-- | docs/desktop/remote_nvim.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/desktop/remote_nvim.md b/docs/desktop/remote_nvim.md new file mode 100644 index 0000000..2b98762 --- /dev/null +++ b/docs/desktop/remote_nvim.md @@ -0,0 +1,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 |