From 9fee0ae616c3e2254cd8f4aa4f243d9eebcefc71 Mon Sep 17 00:00:00 2001 From: Lucas Miguel Date: Wed, 4 Dec 2024 00:09:35 -0300 Subject: [PATCH] =?UTF-8?q?Altera=C3=A7=C3=A3o=20do=20arquivo=20readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d716e61..f6ff77a 100644 --- a/README.md +++ b/README.md @@ -1 +1,47 @@ -# Plugins for syncronization in FTP servers # + +# Plugins for syncronization in FTP servers + +Plugins for syncronization in FTP servers + +## Installation + +Install with your plugin manager. + +Lazy.nvim +```bash + { + "LucasMiguel/nvim-sync-ftp", + config = function () + require('nvim-sync-ftp').setup() + end + } +``` + + +## Settings + +Create a file named `.sync-ftp-config` in the project root, or run the command `:SyncFtpMapToRemote` which will automatically create the file in root path. After change it to the server credentials. + +`.sync-ftp-config` +```bash + host host.com + user user_name + password password + port 22 + remote_path /root_remote/ + upload_to_save false +``` + +**host**: IP server + +**user**: User name + +**password**: Password + +**port**: Port server + +**remote_path**: Root path remote + +**upload_to_save**: (true|false) - Setting to send file when saving + +