From e24d9cd3d05f16f7449a2ff7f57e1358a7025314 Mon Sep 17 00:00:00 2001 From: Adam Pippin Date: Thu, 21 Jul 2022 16:33:16 -0400 Subject: [PATCH] Add some stuff for using coq, basically untested --- lua/config/plugins/development.lua | 6 ------ lua/plugin/ms-jpq/coq_nvim.lua | 8 ++++++++ 2 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 lua/plugin/ms-jpq/coq_nvim.lua diff --git a/lua/config/plugins/development.lua b/lua/config/plugins/development.lua index db8afe5..9e60778 100644 --- a/lua/config/plugins/development.lua +++ b/lua/config/plugins/development.lua @@ -47,12 +47,6 @@ return { -------------------------------------------------------------------------------- -- Things that provide code insights and completion. - ---------------------------------------------------------------------------- - -- Code completion provider - -- - -- Provides completions for a bunch of stuff, integrated with the LSP. - -- - ---------------------------------------------------------------------------- -- Code completion provider -- diff --git a/lua/plugin/ms-jpq/coq_nvim.lua b/lua/plugin/ms-jpq/coq_nvim.lua new file mode 100644 index 0000000..c638adb --- /dev/null +++ b/lua/plugin/ms-jpq/coq_nvim.lua @@ -0,0 +1,8 @@ +local M = require('module'):new() + +function M:boot() + vim.g.coq_settings = self.config +end + +return M +