From 7c7ec7dd916ae01dab83879351ac58255e8d8f3d Mon Sep 17 00:00:00 2001 From: arthur Date: Sat, 22 Jun 2024 12:52:41 +0800 Subject: [PATCH] update --- lua/lazyvim/plugins/extras/lang/sql.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lua/lazyvim/plugins/extras/lang/sql.lua b/lua/lazyvim/plugins/extras/lang/sql.lua index 31f424fa..53e8d127 100644 --- a/lua/lazyvim/plugins/extras/lang/sql.lua +++ b/lua/lazyvim/plugins/extras/lang/sql.lua @@ -10,8 +10,10 @@ if lazyvim_docs then { name = "staging", url = "Replace with your database connection URL." }, } - -- NOTICE: Replace `secrets/db-env` with your own module path. - -- You can set your secrets directly through a Lua table, for example: + -- You can set your secrets directly through a Lua table. For example: + -- Create a secrets/db-env.lua file and return the connection table. + -- Or + -- Replace `secrets/db-env` with your own module path. local ok, dbs = pcall(require, "secrests/db-env") if ok then vim.g.dbs = dbs