Pārlūkot izejas kodu

use lvim.builtin for compe (#1082)

Co-authored-by: Chris <chris@macbook.local>
Christian Chiarulli 4 gadi atpakaļ
vecāks
revīzija
03fd574f4d
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      lua/core/compe.lua

+ 2 - 2
lua/core/compe.lua

@@ -1,6 +1,6 @@
 local M = {}
 M.config = function()
-  lvim.completion = {
+  lvim.builtin.compe = {
     enabled = true,
     autocomplete = true,
     debug = false,
@@ -41,7 +41,7 @@ M.setup = function()
     return
   end
 
-  compe.setup(lvim.completion)
+  compe.setup(lvim.builtin.compe)
 
   local t = function(str)
     return vim.api.nvim_replace_termcodes(str, true, true, true)