| 12345678910111213141516171819202122232425262728293031 |
- return {
- {
- "saecki/crates.nvim",
- tag = "stable",
- config = function()
- require("crates").setup({
- completion = {
- cmp = {
- enabled = true,
- },
- },
- null_ls = {
- enabled = true,
- },
- })
- end,
- },
- {
- "mrcjkb/rustaceanvim",
- version = "^4", -- Recommended
- lazy = false, -- This plugin is already lazy
- },
- {
- "MysticalDevil/inlay-hints.nvim",
- event = "LspAttach",
- dependencies = { "neovim/nvim-lspconfig" },
- config = function()
- require("inlay-hints").setup()
- end,
- },
- }
|