You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
231 B
Lua

function packer_startup(use)
-- Packer can manage itself
use 'wbthomason/packer.nvim'
-- lsp manager
use 'neovim/nvim-lspconfig'
end
require('packer').startup(packer_startup)
require('lspconfig').rust_analyzer.setup({})