From f422da8d9e482802f93913117efe65a43c2d0239 Mon Sep 17 00:00:00 2001 From: Pallav Vasa Date: Sat, 17 May 2025 07:23:20 +0000 Subject: [PATCH] chore: add project local settings for lazyvim --- .lazy.lua | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .lazy.lua diff --git a/.lazy.lua b/.lazy.lua new file mode 100644 index 0000000..f1a1290 --- /dev/null +++ b/.lazy.lua @@ -0,0 +1,24 @@ +return { + "folke/snacks.nvim", + opts = { + -- show hidden files in snacks.explorer + picker = { + sources = { + explorer = { + -- show hidden files like .env + hidden = true, + -- show files ignored by git like node_modules + ignored = false, + exclude = { ".git" }, + }, + files = { + -- show hidden files like .env + hidden = true, + -- show files ignored by git like node_modules + ignored = false, + exclude = { ".npm", ".git" }, + }, + }, + }, + }, +}