about summary refs log tree commit diff stats
path: root/hm/soispha/conf/nvim/plgs/lsp-progress-nvim/lua/lsp-progress-nvim.lua
diff options
context:
space:
mode:
Diffstat (limited to 'hm/soispha/conf/nvim/plgs/lsp-progress-nvim/lua/lsp-progress-nvim.lua')
-rw-r--r--hm/soispha/conf/nvim/plgs/lsp-progress-nvim/lua/lsp-progress-nvim.lua32
1 files changed, 16 insertions, 16 deletions
diff --git a/hm/soispha/conf/nvim/plgs/lsp-progress-nvim/lua/lsp-progress-nvim.lua b/hm/soispha/conf/nvim/plgs/lsp-progress-nvim/lua/lsp-progress-nvim.lua
index 4273085c..efb15720 100644
--- a/hm/soispha/conf/nvim/plgs/lsp-progress-nvim/lua/lsp-progress-nvim.lua
+++ b/hm/soispha/conf/nvim/plgs/lsp-progress-nvim/lua/lsp-progress-nvim.lua
@@ -3,12 +3,12 @@ require("lsp-progress").setup({
   -- Spinning icons.
   --
   --- @type string[]
-  spinner = { "⣾"; "⣽"; "⣻"; "⢿"; "⡿"; "⣟"; "⣯"; "⣷"; };
+  spinner = { "⣾", "⣽", "⣻", "⢿", "⡿", "⣟", "⣯", "⣷" },
 
   -- Spinning update time in milliseconds.
   --
   --- @type integer
-  spin_update_time = 200;
+  spin_update_time = 200,
 
   -- Last message cached decay time in milliseconds.
   --
@@ -17,12 +17,12 @@ require("lsp-progress").setup({
   -- for a while for user view.
   --
   --- @type integer
-  decay = 700;
+  decay = 700,
 
   -- User event name.
   --
   --- @type string
-  event = "LspProgressStatusUpdated";
+  event = "LspProgressStatusUpdated",
 
   -- Event update time limit in milliseconds.
   --
@@ -31,12 +31,12 @@ require("lsp-progress").setup({
   -- event rate to reduce this cost.
   --
   --- @type integer
-  event_update_time_limit = 100;
+  event_update_time_limit = 100,
 
   -- Max progress string length, by default -1 is unlimited.
   --
   --- @type integer
-  max_size = -1;
+  max_size = -1,
 
   -- Regular internal update time.
   --
@@ -44,7 +44,7 @@ require("lsp-progress").setup({
   -- message.
   --
   --- @type integer
-  regular_internal_update_time = 500;
+  regular_internal_update_time = 500,
 
   -- Disable emitting events on specific mode/filetype.
   -- User events would interrupt insert mode, thus break which-key like plugins behaviour.
@@ -53,7 +53,7 @@ require("lsp-progress").setup({
   --  * https://neovim.io/doc/user/builtin.html#mode()
   --
   --- @type table[]
-  disable_events_opts = { { mode = "i"; filetype = "TelescopePrompt"; }; };
+  disable_events_opts = { { mode = "i", filetype = "TelescopePrompt" } },
 
   -- Format series message.
   --
@@ -89,7 +89,7 @@ require("lsp-progress").setup({
       table.insert(builder, "- done")
     end
     return table.concat(builder, " ")
-  end;
+  end,
 
   -- Format client message.
   --
@@ -107,9 +107,9 @@ require("lsp-progress").setup({
   ---     `client_messages` array, or ignored if return nil.
   client_format = function(client_name, spinner, series_messages)
     return #series_messages > 0
-      and ("[" .. client_name .. "] " .. spinner .. " " .. table.concat(series_messages, ", "))
+        and ("[" .. client_name .. "] " .. spinner .. " " .. table.concat(series_messages, ", "))
       or nil
-  end;
+  end,
 
   -- Format (final) message.
   --
@@ -123,22 +123,22 @@ require("lsp-progress").setup({
   format = function(client_messages)
     local sign = " LSP" -- nf-fa-gear \uf013
     return #client_messages > 0 and (sign .. " " .. table.concat(client_messages, " ")) or sign
-  end;
+  end,
 
   -- Enable debug.
   --
   --- @type boolean
-  debug = false;
+  debug = false,
 
   -- Print log to console(command line).
   --
   --- @type boolean
-  console_log = false;
+  console_log = false,
 
   -- Print log to file.
   --
   --- @type boolean
-  file_log = true;
+  file_log = true,
 
   -- Log file to write, work with `file_log=true`.
   --
@@ -146,5 +146,5 @@ require("lsp-progress").setup({
   -- For *NIX: `~/.local/share/nvim/lsp-progress.log`.
   --
   --- @type string
-  file_log_name = "lsp-progress.log";
+  file_log_name = "lsp-progress.log",
 })