1
0
Fork 0

there we go, coq much more functional now

This commit is contained in:
Vivianne 2022-07-03 15:35:02 -07:00
parent 662cf5b04b
commit 886ae5363d
2 changed files with 14 additions and 1 deletions

View File

@ -26,7 +26,7 @@ set listchars=tab:➫\ ,trail:░
hi EoLSpace ctermbg=238 guibg=#333333
match EoLSpace /\s\+$/
set completeopt=menu,menuone,noselect,preview
set completeopt=menu,menuone,preview,noinsert
set fillchars+=vert:\
set wrap breakindent

View File

@ -210,9 +210,22 @@ return require('packer').startup(function(use)
end
end
}
use {
'ms-jpq/coq.artifacts',
branch = 'artifacts'
}
use {
'ms-jpq/coq_nvim',
branch = 'coq',
requires = 'ms-jpq/coq.artifacts',
config = function()
vim.g.coq_settings = {
auto_start = 'shut-up',
keymap = {
pre_select = true
}
}
end
}
use {
'nvim-treesitter/nvim-treesitter',