plugins
This commit is contained in:
parent
18b919c61e
commit
7305d64a4a
4 changed files with 49 additions and 0 deletions
18
lua/custom/plugins/lean.lua
Normal file
18
lua/custom/plugins/lean.lua
Normal 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,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue