diff options
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | lua/dep.lua | 2 | ||||
-rw-r--r-- | lua/dep/log.lua | 2 | ||||
-rw-r--r-- | lua/dep/package.lua | 2 | ||||
-rw-r--r-- | lua/dep2.lua | 2 |
5 files changed, 9 insertions, 8 deletions
@@ -8,7 +8,7 @@ > This readme is a work in progress. A versatile, declarative and correct [neovim][2] package manager in [Lua][3]. -Written for personal use by [luaneko][4]. +Originally written for personal use by [luaneko][4]. What does that mean? @@ -16,12 +16,12 @@ 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. -Read [this blog post][1] for context. +See also luaneko's [neovim-configs][10] for an example of how dep can be used in practice. ## Requirements -- [neovim][2] 0.6+ -- [git][5] +- [Neovim][2] 0.6+ +- [Git][5] ## Setup @@ -416,3 +416,4 @@ dep is licensed under the [MIT License](LICENSE). [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 diff --git a/lua/dep.lua b/lua/dep.lua index 1c6d9a1..f0e2f7b 100644 --- a/lua/dep.lua +++ b/lua/dep.lua @@ -4,7 +4,7 @@ -- Use of this source code is governed by the MIT License -- which can be found in the LICENSE file and at: -- --- https://opensource.org/licenses/MIT +-- https://chiya.dev/licenses/mit.txt -- local logger = require("dep.log").global diff --git a/lua/dep/log.lua b/lua/dep/log.lua index 00dc8ca..86994b6 100644 --- a/lua/dep/log.lua +++ b/lua/dep/log.lua @@ -4,7 +4,7 @@ -- Use of this source code is governed by the MIT License -- which can be found in the LICENSE file and at: -- --- https://opensource.org/licenses/MIT +-- https://chiya.dev/licenses/mit.txt -- local vim, setmetatable, pcall, debug, string, os, assert = vim, setmetatable, pcall, debug, string, os, assert diff --git a/lua/dep/package.lua b/lua/dep/package.lua index bff4e17..513df8d 100644 --- a/lua/dep/package.lua +++ b/lua/dep/package.lua @@ -4,7 +4,7 @@ -- Use of this source code is governed by the MIT License -- which can be found in the LICENSE file and at: -- --- https://opensource.org/licenses/MIT +-- https://chiya.dev/licenses/mit.txt -- local require, type, setmetatable, error, table, assert, math, os, debug = require, type, setmetatable, error, table, assert, math, os, debug diff --git a/lua/dep2.lua b/lua/dep2.lua index 447f474..a4d4953 100644 --- a/lua/dep2.lua +++ b/lua/dep2.lua @@ -4,7 +4,7 @@ -- Use of this source code is governed by the MIT License -- which can be found in the LICENSE file and at: -- --- https://opensource.org/licenses/MIT +-- https://chiya.dev/licenses/mit.txt -- local logger = require("dep.log").global local store = require("dep.package").PackageStore() |