diff options
| author | Diorman Colmenares <229201+diorman@users.noreply.github.com> | 2025-01-15 11:38:26 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-15 14:38:26 -0500 |
| commit | 8805581fd9ad23bb3ea2535be0d95ad892830475 (patch) | |
| tree | dca1dc324f7c9f56da2f21232d5a743507a5cff5 /nvim | |
| parent | 77615f91983597eb2e216a54f10cc8734c13a0de (diff) | |
| download | dots-8805581fd9ad23bb3ea2535be0d95ad892830475.tar.gz | |
Use luals 3rd library for luv (#1303)
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/init.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index edbc378..4eae8e7 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -447,11 +447,10 @@ require('lazy').setup({ opts = { library = { -- Load luvit types when the `vim.uv` word is found - { path = 'luvit-meta/library', words = { 'vim%.uv' } }, + { path = '${3rd}/luv/library', words = { 'vim%.uv' } }, }, }, }, - { 'Bilal2453/luvit-meta', lazy = true }, { -- Main LSP Configuration 'neovim/nvim-lspconfig', |