Cleaning up config

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-06-17 20:56:33 +02:00
parent 282a7bf919
commit 70ffac691d

View File

@@ -1,18 +1,12 @@
require('nvimcord').setup { require('nvimcord').setup {
-- Start the RPC manually (boolean)
autostart = false, autostart = false,
-- Set the client ID (string) client_id = '1088133821985210408',
client_id = '954365489214291979',
-- Use the filetype as the large icon (boolean)
large_file_icon = true, large_file_icon = true,
-- Set the log level (enum)
log_level = vim.log.levels.DEBUG, log_level = vim.log.levels.DEBUG,
-- Get the workspace name (function|string)
workspace_name = function() workspace_name = function()
return --[[cwd basename]] return vim.cmd [[pwd]]
end, end,
-- Get the workspace URL (function|string)
workspace_url = function() workspace_url = function()
return '' return ''
end, end,
} }