We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa90e6 commit 5bbc107Copy full SHA for 5bbc107
lua/copilot/init.lua
@@ -2,7 +2,6 @@ local M = { setup_done = false }
2
local highlight = require("copilot.highlight")
3
local logger = require("copilot.logger")
4
local client = require("copilot.client")
5
-local auth = require("copilot.auth")
6
local config = require("copilot.config")
7
8
M.setup = function(opts)
@@ -12,9 +11,8 @@ M.setup = function(opts)
12
11
13
highlight.setup()
14
config.merge_with_user_configs(opts)
15
-
16
- require("copilot.command").enable()
17
logger.setup(config.logger)
+ require("copilot.command").enable()
18
19
logger.debug("active plugin config:", config)
20
-- logged here to ensure the logger is setup
0 commit comments