Update url for sqlite dependency (#64)

The old repository on github redirects to this one.
This commit is contained in:
Lucas Hoffmann 2022-09-06 07:47:32 +02:00 committed by GitHub
parent 6d2db0ee0c
commit d51c7631dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ If the active buffer (prior to the finder being launched) is attached to an LSP
## Requirements ## Requirements
- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim) (required) - [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim) (required)
- [sqlite.lua](https://github.com/tami5/sqlite.lua) (required) - [sqlite.lua](https://github.com/kkharji/sqlite.lua) (required)
- [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons) (optional) - [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons) (optional)
Timestamps and file records are stored in an [SQLite3](https://www.sqlite.org/index.html) database for persistence and speed. Timestamps and file records are stored in an [SQLite3](https://www.sqlite.org/index.html) database for persistence and speed.
@ -75,7 +75,7 @@ use {
config = function() config = function()
require"telescope".load_extension("frecency") require"telescope".load_extension("frecency")
end, end,
requires = {"tami5/sqlite.lua"} requires = {"kkharji/sqlite.lua"}
} }
``` ```