This commit is contained in:
Joshua Sun 2024-02-28 11:46:02 -05:00
parent 18b919c61e
commit 7305d64a4a
4 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,18 @@
return {
'Julian/lean.nvim',
event = { 'BufReadPre *.lean', 'BufNewFile *.lean' },
dependencies = {
'neovim/nvim-lspconfig',
'nvim-lua/plenary.nvim',
-- you also will likely want nvim-cmp or some completion engine
},
-- see details below for full configuration options
opts = {
lsp = {
on_attach = on_attach,
},
mappings = true,
}
}