aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Macklin <1863540+rmacklin@users.noreply.github.com>2024-07-21 19:08:09 -0700
committerGitHub <noreply@github.com>2024-07-21 22:08:09 -0400
commit620732789b56ba7770bf12211ad2820309136ff1 (patch)
treef4fd097e3bcb69153c731242df2f64c6860ea1db
parent7513ec8a7dd579957ce2d9b44e05c1da18d7d0e3 (diff)
Update lazydev config to fix "Undefined field `fs_stat`" LSP error (#1040)
7513ec8a7dd579957ce2d9b44e05c1da18d7d0e3 switched from neodev to lazydev, but in the process it introduced an LSP error in `init.lua`, which degrades the desired "first timer" experience of kickstart.nvim. This commit follows the configuration suggested in https://github.com/folke/lazydev.nvim/tree/6184ebbbc8045d70077659b7d30c705a588dc62f#-installation which resolves the LSP error.
-rw-r--r--init.lua12
1 files changed, 11 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index a1c900f..7718130 100644
--- a/init.lua
+++ b/init.lua
@@ -413,7 +413,17 @@ require('lazy').setup({
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
-- used for completion, annotations and signatures of Neovim apis
- { 'folke/lazydev.nvim', ft = 'lua', opts = {} },
+ {
+ 'folke/lazydev.nvim',
+ ft = 'lua',
+ opts = {
+ library = {
+ -- Load luvit types when the `vim.uv` word is found
+ { path = 'luvit-meta/library', words = { 'vim%.uv' } },
+ },
+ },
+ },
+ { 'Bilal2453/luvit-meta', lazy = true },
},
config = function()
-- Brief aside: **What is LSP?**