mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-12-22 05:48:01 +00:00
[neovim] Use vim.loop to read custom files
This commit is contained in:
parent
f28515a1d3
commit
47b946d65a
@ -19,14 +19,32 @@ local lazy_opts = {
|
||||
},
|
||||
}
|
||||
|
||||
local projects = function ()
|
||||
local file = io.open(os.getenv("HOME") .. "/.config/nvim/neovim-projects.json", "rb")
|
||||
if not file then return {} end
|
||||
local uv = vim.loop
|
||||
local function readFile(path)
|
||||
local fd = uv.fs_open(path, "r", 438)
|
||||
if fd == nil then
|
||||
return nil
|
||||
end
|
||||
local stat = uv.fs_fstat(fd)
|
||||
if fd == nil then
|
||||
return nil
|
||||
end
|
||||
local data = uv.fs_read(fd, stat.size, 0)
|
||||
if data == nil then
|
||||
return nil
|
||||
end
|
||||
assert(uv.fs_close(fd))
|
||||
|
||||
local jsonString = file:read "*a"
|
||||
file:close()
|
||||
return data
|
||||
end
|
||||
|
||||
return vim.json.decode(jsonString)
|
||||
local projects = function()
|
||||
local data = readFile(os.getenv("HOME") .. "/.config/nvim/neovim-projects.json")
|
||||
if data then
|
||||
return vim.json.decode(data)
|
||||
else
|
||||
return {}
|
||||
end
|
||||
end
|
||||
|
||||
require("lazy").setup({
|
||||
|
Loading…
Reference in New Issue
Block a user