diff --git a/lazy-lock.json b/lazy-lock.json index c41bd18..c6082d7 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -21,6 +21,7 @@ "mini.icons": { "branch": "main", "commit": "397ed3807e96b59709ef3292f0a3e253d5c1dc0a" }, "mini.pairs": { "branch": "main", "commit": "69864a2efb36c030877421634487fd90db1e4298" }, "molokai": { "branch": "master", "commit": "c67bdfcdb31415aa0ade7f8c003261700a885476" }, + "neo-tree.nvim": { "branch": "main", "commit": "3f1dd2de5045659e00bfbe27c8aca3b52c1fdbde" }, "neotest": { "branch": "master", "commit": "ef492755730e59e1d8122c461abbd086bee4c76b" }, "neotest-python": { "branch": "master", "commit": "a2861ab3c9a0bf75a56b11835c2bfc8270f5be7e" }, "noice.nvim": { "branch": "main", "commit": "0427460c2d7f673ad60eb02b35f5e9926cf67c59" }, diff --git a/lua/plugins/example.lua b/lua/plugins/example.lua index 18ba22f..aed0887 100644 --- a/lua/plugins/example.lua +++ b/lua/plugins/example.lua @@ -33,7 +33,7 @@ return { formatters_by_ft = { python = { "black" }, sh = { "shfmt" }, - lua = { "stylua" }, + lua = { "/opt/homebrew/bin/lua" }, tex = { "latexindent" }, }, }}, @@ -75,6 +75,43 @@ return { }, -- See Commands section for default commands if you want to lazy load on them }, + { + "folke/snacks.nvim", + opts = { + picker = { + sources = { + files = { + hidden = true, + ignored = true, + exclude = { + "*.pdf", + "*.aux", + "*.bbl", + "*.bcf", + "*.blg", + "*.fdb_latexmk", + "*.fls", + "*.log", + "*.pdf", + "*.run%.xml", + "*.synctex%.gz", + "*.out", + "*.toc", + "*.pyc", + "*.pyo", + "*.xml", + "*.gz", + "*.DS_Store", + "*.zip", + "__pycache__", + "venv", + ".git", + }, + }, + }, + }, + } + } } -- every spec file under the "plugins" directory will be loaded automatically by lazy.nvim --