Update readme and license links
This commit is contained in:
@ -8,7 +8,7 @@
|
|||||||
> This readme is a work in progress.
|
> This readme is a work in progress.
|
||||||
|
|
||||||
A versatile, declarative and correct [neovim][2] package manager in [Lua][3].
|
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?
|
What does that mean?
|
||||||
|
|
||||||
@ -16,12 +16,12 @@ What does that mean?
|
|||||||
2. `declarative` - packages are declared using simple Lua tables.
|
2. `declarative` - packages are declared using simple Lua tables.
|
||||||
3. `correct` - packages are always loaded in a correct and consistent order.
|
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
|
## Requirements
|
||||||
|
|
||||||
- [neovim][2] 0.6+
|
- [Neovim][2] 0.6+
|
||||||
- [git][5]
|
- [Git][5]
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
@ -416,3 +416,4 @@ dep is licensed under the [MIT License](LICENSE).
|
|||||||
[7]: https://github.com/tpope/vim-fugitive
|
[7]: https://github.com/tpope/vim-fugitive
|
||||||
[8]: https://GitHub.com/chiyadev/dep/issues
|
[8]: https://GitHub.com/chiyadev/dep/issues
|
||||||
[9]: https://github.com/chiyadev/dep/graphs/contributors
|
[9]: https://github.com/chiyadev/dep/graphs/contributors
|
||||||
|
[10]: https://github.com/luaneko/neovim-config
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
-- Use of this source code is governed by the MIT License
|
-- Use of this source code is governed by the MIT License
|
||||||
-- which can be found in the LICENSE file and at:
|
-- 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 logger = require("dep.log").global
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
-- Use of this source code is governed by the MIT License
|
-- Use of this source code is governed by the MIT License
|
||||||
-- which can be found in the LICENSE file and at:
|
-- 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
|
local vim, setmetatable, pcall, debug, string, os, assert = vim, setmetatable, pcall, debug, string, os, assert
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
-- Use of this source code is governed by the MIT License
|
-- Use of this source code is governed by the MIT License
|
||||||
-- which can be found in the LICENSE file and at:
|
-- 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 =
|
local require, type, setmetatable, error, table, assert, math, os, debug =
|
||||||
require, type, setmetatable, error, table, assert, math, os, debug
|
require, type, setmetatable, error, table, assert, math, os, debug
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
-- Use of this source code is governed by the MIT License
|
-- Use of this source code is governed by the MIT License
|
||||||
-- which can be found in the LICENSE file and at:
|
-- 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 logger = require("dep.log").global
|
||||||
local store = require("dep.package").PackageStore()
|
local store = require("dep.package").PackageStore()
|
||||||
|
Reference in New Issue
Block a user