From 70ffac691de2192c5ece448ab68708862b533e90 Mon Sep 17 00:00:00 2001 From: Taken Date: Sat, 17 Jun 2023 20:56:33 +0200 Subject: [PATCH] Cleaning up config Signed-off-by: Taken --- after/plugin/nvimcord.lua | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/after/plugin/nvimcord.lua b/after/plugin/nvimcord.lua index e4f5d0d..2e3f9ee 100644 --- a/after/plugin/nvimcord.lua +++ b/after/plugin/nvimcord.lua @@ -1,18 +1,12 @@ require('nvimcord').setup { - -- Start the RPC manually (boolean) autostart = false, - -- Set the client ID (string) - client_id = '954365489214291979', - -- Use the filetype as the large icon (boolean) + client_id = '1088133821985210408', large_file_icon = true, - -- Set the log level (enum) log_level = vim.log.levels.DEBUG, - -- Get the workspace name (function|string) workspace_name = function() - return --[[cwd basename]] + return vim.cmd [[pwd]] end, - -- Get the workspace URL (function|string) workspace_url = function() - return '' + return '' end, }