Neovim: update which-key configuration to v3
This commit is contained in:
parent
165c1ee9ca
commit
44345df4a9
12 changed files with 95 additions and 87 deletions
15
home/.config/nvim/lua/plugins/lazydev.lua
Normal file
15
home/.config/nvim/lua/plugins/lazydev.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
-- Neovim setup for init.lua and plugin development with full signature help, docs and completion for the nvim lua API.
|
||||
--- @type LazyPluginSpec
|
||||
return {
|
||||
{
|
||||
"folke/lazydev.nvim",
|
||||
ft = "lua", -- only load on lua files
|
||||
opts = {
|
||||
library = {
|
||||
-- See the configuration section for more details
|
||||
-- Load luvit types when the `vim.uv` word is found
|
||||
{ path = "luvit-meta/library", words = { "vim%.uv" } },
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue