there we go, coq much more functional now
This commit is contained in:
parent
662cf5b04b
commit
886ae5363d
2 changed files with 14 additions and 1 deletions
2
init.vim
2
init.vim
|
@ -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
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue