diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2025-04-02 16:24:45 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2025-04-02 16:24:45 -0400 |
commit | d86ec5bb6af1fc0cb2e6b8b8042a358c341a4db0 (patch) | |
tree | 4797699eec86cefa18c76f8b1edddd700c19893e | |
parent | c22ea8c5ec4258303ae1a14127c87be96efd8c19 (diff) |
docs: quickfixes
-rw-r--r-- | README.md | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -16,6 +16,9 @@ Your neovim tabs, dropshipped into your projects 2. Setup keybinds you might want to use dropship with 3. Profit! +Below you may find some example [Lazy][2] configurations for this +plugin. + **Using a pre-baked list of drop-locations**: ```lua @@ -23,11 +26,11 @@ Your neovim tabs, dropshipped into your projects "ChausseBenjamin/dropship.nvim", dependencies = "nvim-telescope/telescope.nvim", opts = { - drop_locations = { - { "Projects", "~/Workspace" }, - { "Neovim Config", "~/.config/nvim" }, - { "University", "~/Documents/school/university/current_semester" }, - }, + drop_locations = { + { "Projects", "~/Workspace" }, + { "Neovim Config", "~/.config/nvim" }, + { "University", "~/Documents/school/university/current_semester" }, + }, }, keys = { { @@ -84,3 +87,4 @@ return { [1]: https://github.com/ChausseBenjamin/dotfiles/blob/master/.local/bin/shortcutgen +[2]: https://github.com/folke/lazy.nvim |