init.lua (651B)
1 return { 2 { 3 "stevearc/conform.nvim", 4 -- event = 'BufWritePre', -- uncomment for format on save 5 opts = require "configs.conform", 6 }, 7 8 -- These are some examples, uncomment them if you want to see them work! 9 { 10 "neovim/nvim-lspconfig", 11 config = function() 12 require "configs.lspconfig" 13 end, 14 }, 15 16 { 17 "nvim-treesitter/nvim-treesitter", 18 opts = { 19 ensure_installed = { 20 "vim", "lua", "vimdoc", 21 "html", "css", "c", "rust" 22 }, 23 }, 24 }, 25 26 { 27 "mrcjkb/rustaceanvim", 28 version = '^4', 29 lazy = false, 30 ["rust-analyzer"] = { 31 cargo = { 32 allFeatures = true, 33 }, 34 }, 35 }, 36 }