lean.nvim: enable abbreviations

This commit is contained in:
Gabriel Ebner 2021-06-02 11:04:07 +02:00
parent 3f4f9ed112
commit 7d1faefeab
1 changed files with 6 additions and 0 deletions

6
vimrc
View File

@ -204,6 +204,12 @@ au FileChangedRO * set noreadonly
if has('nvim-0.5')
lua <<EOF
require('lean').setup{
abbreviations = {
extras = {
['.'] = '·',
},
enable = true,
},
treesitter = {},
lsp = {
on_attach = function(client, bufnr)