nvim: Introduce LISP support
This commit is contained in:
parent
000bd17c4c
commit
a23caf6d12
2 changed files with 18 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -6,6 +6,8 @@ nvim/.local/share/nvim/site/pack/packer/opt/ghcid
|
|||
nvim/.local/share/nvim/site/pack/packer/opt/git-messenger.vim
|
||||
nvim/.local/share/nvim/site/pack/packer/opt/neoformat
|
||||
nvim/.local/share/nvim/site/pack/packer/opt/haskell-vim
|
||||
nvim/.local/share/nvim/site/pack/packer/opt/conjure/
|
||||
nvim/.local/share/nvim/site/pack/packer/opt/parinfer-rust/
|
||||
nvim/.local/share/nvim/log
|
||||
nvim/.local/share/nvim/lsp.log
|
||||
nvim/.local/share/nvim/rplugin.vim
|
||||
|
|
|
@ -140,6 +140,22 @@ local init = function ()
|
|||
-- Dhall & nix
|
||||
use 'vmchale/dhall-vim'
|
||||
use 'LnL7/vim-nix'
|
||||
-- LISP
|
||||
use { 'Olical/aniseed', tag = 'v3.14.0' }
|
||||
use {
|
||||
'Olical/conjure',
|
||||
tag = 'v4.13.0',
|
||||
ft = { 'fennel', 'racket' }
|
||||
}
|
||||
use {
|
||||
'eraserhd/parinfer-rust',
|
||||
run = 'cargo build --release',
|
||||
ft = { 'fennel', 'racket', 'scheme' }
|
||||
}
|
||||
use 'wlangstroth/vim-racket'
|
||||
use {
|
||||
'https://gitlab.com/HiPhish/guile.vim'
|
||||
}
|
||||
-- Other syntax highlighting support
|
||||
use 'georgewitteman/vim-fish'
|
||||
use 'inkarkat/SyntaxAttr.vim'
|
||||
|
|
Loading…
Reference in a new issue