my dotfiles for arch
1return {
2 -- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
3 -- used for completion, annotations and signatures of Neovim apis
4 "folke/lazydev.nvim",
5 ft = "lua",
6 opts = {
7 library = {
8 -- Load luvit types when the `vim.uv` word is found
9 { path = "${3rd}/luv/library", words = { "vim%.uv" } },
10 },
11 },
12}