
# dropship.nvim
Your neovim tabs, dropshipped into your projects
## What it is
It's yet another bookmarks telescope plugin. However, I designed it so that you
can load your bookmarks from a lua file that isn't in your neovim config.
You can either:
- Load up a bookmark/drop-site for every open tab `:DropshipGlobalDir`
- Load up a bookmark/drop-site for the current tab `:DropshipCurrentTab`
- Load up a bookmark/drop-site in a new tab `:DropshipNewTab`
The whole plugin is under 100 lines of code so don't worry about bloating your
neovim config ;)
## Configuration
Below you may find some example [Lazy][2] configurations for this
plugin.
**Using a pre-baked list of drop-locations**:
```lua
{
"ChausseBenjamin/dropship.nvim",
dependencies = "nvim-telescope/telescope.nvim",
opts = {
new_tab_explorer = false, -- Set to true to use `:Exp` on new tabs
-- prompt_title = "Prompt inside Telescope" -- Optional
-- prompt_icon = "> " -- Optional: good if you don't have a NerdFont
drop_locations = {
{ name = "Projects", dir = "~/Workspace" },
{ name = "Neovim Config", dir = "~/.config/nvim" },
{ name = "University", dir = "~/Documents/school/university" },
},
},
keys = {
{
"