[nvim] Add some language-specific plugins

This commit is contained in:
Alyxia Sother 2023-05-19 11:34:20 +02:00
parent 9377f1721a
commit 5ee89b2253
No known key found for this signature in database
GPG Key ID: 0B2497099595CAA5
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,2 @@
call extend(g:dotfiles_coc_extensions, {'coc-cl': 1})
call extend(g:dotfiles_coc_filetypes, {'lisp': 1})

View File

@ -0,0 +1,4 @@
if !has('nvim-0.2.1') | finish | endif
call extend(g:dotfiles_coc_extensions, {'coc-stylua': 1})
let g:coc_user_config['coc.preferences.formatOnSaveFiletypes'] = ['lua']
let g:coc_user_config['stylua.styluaPath'] = "/usr/bin/stylua"