From af1de146bf661306789a9f7c546a08ae5b7ff9c8 Mon Sep 17 00:00:00 2001
From: Foo-x <www.sand.x@gmail.com>
Date: Sun, 20 Oct 2024 00:07:25 +0900
Subject: [PATCH] docs: add stats to available winbar panes (#293)

---
 docs/docs/getting-started/configuration-options.md | 3 ++-
 lua/kulala/config/init.lua                         | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/docs/docs/getting-started/configuration-options.md b/docs/docs/getting-started/configuration-options.md
index 5270585..ef4ca7c 100644
--- a/docs/docs/getting-started/configuration-options.md
+++ b/docs/docs/getting-started/configuration-options.md
@@ -87,7 +87,7 @@ the Kulala plugin with the available `opts`:
     winbar = false,
 
     -- Specify the panes to be displayed by default
-    -- Current avaliable pane contains { "body", "headers", "headers_body", "script_output" },
+    -- Current avaliable pane contains { "body", "headers", "headers_body", "script_output", "stats" },
     default_winbar_panes = { "body", "headers", "headers_body" },
 
     -- enable reading vscode rest client environment variables
@@ -157,6 +157,7 @@ Possible values:
 - `headers`
 - `headers_body`
 - `script_output`
+- `stats`
 
 Default: `body`
 
diff --git a/lua/kulala/config/init.lua b/lua/kulala/config/init.lua
index a883710..0bd547c 100644
--- a/lua/kulala/config/init.lua
+++ b/lua/kulala/config/init.lua
@@ -63,7 +63,7 @@ M.defaults = {
   -- enable winbar
   winbar = false,
   -- Specify the panes to be displayed by default
-  -- Current avaliable pane contains { "body", "headers", "headers_body", "script_output" },
+  -- Current avaliable pane contains { "body", "headers", "headers_body", "script_output", "stats" },
   default_winbar_panes = { "body", "headers", "headers_body" },
   -- enable reading vscode rest client environment variables
   vscode_rest_client_environmentvars = false,