diff options
author | Squibid <me@zacharyscheiman.com> | 2024-12-24 14:28:16 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-12-24 14:28:16 -0500 |
commit | 92d8f8b9eefe996fe3ce1af0592c08545073e646 (patch) | |
tree | 218ec76d937dbd5b494898cecd65adcbc52083f5 | |
parent | 443a091e3e2b0c4fc0fdcaf00d878b1edc86ce91 (diff) | |
download | dep-master.tar.gz dep-master.tar.bz2 dep-master.zip |
Diffstat (limited to '')
-rw-r--r-- | README.md | 37 |
1 files changed, 11 insertions, 26 deletions
@@ -1,14 +1,8 @@ # dep - -[](LICENSE) -[][4] -[][8] -[][9] - > This readme is a work in progress. -A versatile, declarative and correct [neovim][2] package manager in [Lua][3]. -Originally written for personal use by [luaneko][4]. +A versatile, declarative and correct [neovim][1] package manager in [Lua][2]. +Originally written for personal use by [luaneko][3]. What does that mean? @@ -16,20 +10,16 @@ What does that mean? 2. `declarative` - packages are declared using simple Lua tables. 3. `correct` - packages are always loaded in a correct and consistent order. -See also luaneko's [neovim-configs][10] for an example of how dep can be used in practice. - +See also squibid's [neovim-configs][5] for an example of how dep can be used in practice. ## Requirements - -- [Neovim][2] 0.6+ -- [Git][5] - +- [Neovim][1] 0.6+ +- [Git][4] ## Setup - 1. Create `lua/bootstrap.lua` in your neovim config directory. ```lua -- ~/.config/nvim/lua/bootstrap.lua: --- automatically install `chiyadev/dep` on startup +-- automatically install `squibid/dep` on startup local path = vim.fn.stdpath("data") .. "/site/pack/deps/opt/dep" if vim.fn.empty(vim.fn.glob(path)) > 0 then @@ -316,13 +306,8 @@ require "dep" { dep is licensed under the [MIT License](LICENSE). -[1]: https://chiya.dev/posts/2021-11-27-why-package-manager -[2]: https://neovim.io/ -[3]: https://www.lua.org/ -[4]: https://github.com/luaneko -[5]: https://git-scm.com/ -[6]: https://github.com/nvim-telescope/telescope.nvim -[7]: https://github.com/tpope/vim-fugitive -[8]: https://GitHub.com/chiyadev/dep/issues -[9]: https://github.com/chiyadev/dep/graphs/contributors -[10]: https://github.com/luaneko/neovim-config +[1]: https://neovim.io/ +[2]: https://www.lua.org/ +[3]: https://github.com/luaneko +[4]: https://git-scm.com/ +[5]: https://git.squi.bid/nvim |