๐ŸŒฑ tiny neovim plugin keeping your session safe
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: edit emoji

robin cb7a457f b1167a54

+8 -8
+8 -8
README.md
··· 1 - # nivvie :seedline: 1 + # nivvie :seedling: 2 2 3 3 tiny neovim session keeper, keeping your place safe 4 4 5 - ## what it does ๐Ÿƒ 5 + ## :herb: what it does 6 6 7 7 nivvie remembers where you left off and restores it when you return (session 8 8 handling). it keeps sessions stored safely and lets you call on them whenever 9 9 you need, without clutter or extra ritual. 10 10 11 - ## why nivvie ๐Ÿ‚ 11 + ## why nivvie 12 12 13 13 there are larger session managers with more features. nivvie is a small and 14 14 quiet companion, meant for when you want something clean, simple, and reliable. 15 15 16 - ## features ๐ŸŒธ 16 + ## :sparkles: features 17 17 18 18 - automatic save and restore (no extra steps) 19 19 - manual save, load, and delete commands (direct control) 20 20 - minimal configuration (defaults just work) 21 21 - lightweight and unobtrusive (stays out of the way) 22 22 23 - ## installation ๐ŸŒฟ 23 + ## :potted_plant: installation 24 24 25 25 add nivvie with your favourite plugin manager. 26 26 ··· 37 37 "comfysage/nivvie.nvim", 38 38 lazy = false, -- nivvie takes care of its own lazy loading 39 39 config = function() 40 - require("nivvie").setup() 40 + require("nivvie").setup() -- not necessary to call 41 41 end 42 42 } 43 43 ``` 44 44 45 - ## usage ๐ŸŒผ 45 + ## :rose: usage 46 46 47 47 sessions are saved automatically when you quit neovim and restored when you open it again. you can also manage sessions yourself: 48 48 ··· 59 59 vim.keymap.set("n", "<leader>sl", ":NivvieLoad<CR>") 60 60 ``` 61 61 62 - ## configuration ๐ŸŒพ 62 + ## :wilted_flower: configuration 63 63 64 64 nivvie works without configuration (zero setup). you can still adjust its behavior: 65 65