kiran94/s3edit.nvim

github github
file-explorer
stars 37
issues 0
subscribers 2
forks 1
CREATED

2022-10-13

UPDATED

10 months ago


S3Edit.nvim

main

Edit files from S3 directly from Neovim

Install

{ 'kiran94/s3edit.nvim', config = true, cmd = "S3Edit"},

using lazy.nvim

Dependencies

  • aws in your PATH and configured
  • Neovim 0.8+

Once installed you can run a health check via :checkhealth s3edit

Usage

Setup the plugin

require('s3edit').setup()

Configuration

By default the following configuration will apply:

require('s3edit').setup({
    exclude = { ".git", ".hoodie", ".parquet", ".zip" },
    autocommand_events = { "BufWritePost" },
}
Option Description
exclude File paths to exclude from object search
autocommand_events The event to fire updates to S3

Edit

require('s3edit').edit() -- or :S3Edit

Preview

asciicast

NOTE: if you want to use telescope as your selector then take a look at telescope-ui-select.nvim

Similar