25 lines
657 B
Lua
25 lines
657 B
Lua
return {
|
|
{
|
|
"mrcjkb/rustaceanvim",
|
|
version = "^6", -- Recommended
|
|
lazy = false, -- This plugin is already lazy
|
|
},
|
|
{
|
|
-- `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 = {
|
|
library = {
|
|
-- Load luvit types when the `vim.uv` word is found
|
|
{ path = "${3rd}/luv/library", words = { "vim%.uv" } },
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"pmizio/typescript-tools.nvim",
|
|
enabled = false,
|
|
dependencies = { "nvim-lua/plenary.nvim", "neovim/nvim-lspconfig" },
|
|
opts = {},
|
|
},
|
|
}
|