From 64ca81d154d6706feb362175e7c711cbb6755b70 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Mon, 14 Feb 2022 23:20:46 +0100 Subject: [PATCH] [nvim] Add some LISP plugins --- nvim/coc-languages/lisp.vim | 2 ++ nvim/dotfiles/plugins-list.vim | 2 ++ nvim/ftdetect/dotfiles.vim | 1 + 3 files changed, 5 insertions(+) create mode 100644 nvim/coc-languages/lisp.vim diff --git a/nvim/coc-languages/lisp.vim b/nvim/coc-languages/lisp.vim new file mode 100644 index 0000000..919a2eb --- /dev/null +++ b/nvim/coc-languages/lisp.vim @@ -0,0 +1,2 @@ +call extend(g:dotfiles_coc_extensions, {'coc-cl': 1}) +call extend(g:dotfiles_coc_filetypes, {'lsp': 1}) diff --git a/nvim/dotfiles/plugins-list.vim b/nvim/dotfiles/plugins-list.vim index 6c1772a..6879df1 100644 --- a/nvim/dotfiles/plugins-list.vim +++ b/nvim/dotfiles/plugins-list.vim @@ -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' }) diff --git a/nvim/ftdetect/dotfiles.vim b/nvim/ftdetect/dotfiles.vim index ff733e1..c120a2d 100644 --- a/nvim/ftdetect/dotfiles.vim +++ b/nvim/ftdetect/dotfiles.vim @@ -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