[nvim] Add some LISP plugins

This commit is contained in:
Alyxia Sother 2022-02-14 23:20:46 +01:00
parent 3de19fbfcc
commit 64ca81d154
No known key found for this signature in database
GPG Key ID: 355968D14144B739
3 changed files with 5 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, {'lsp': 1})

View File

@ -23,6 +23,8 @@ let s:plug = funcref('dotfiles#plugman#register')
call s:plug('stevearc/vim-arduino')
call s:plug('xiyaowong/coc-nvim-lua')
call s:plug('luke-gru/vim-riml')
call s:plug('bhurlow/vim-parinfer')
call s:plug('vim-scripts/newlisp')
if has('unix')
call s:plug('nvim-neorg/neorg', { 'branch': 'unstable' }) " dependencies {{{
call s:plug('nvim-treesitter/nvim-treesitter', { 'do': ':TSUpdate' })

View File

@ -6,4 +6,5 @@ augroup dotfilesftdetect
autocmd BufWritePost PKGBUILD :call s:genSrcInfo()
autocmd BufNewFile,BufRead *.dream setf dream
autocmd BufNewFile,BufRead *.newlisp setf newlisp
augroup END