From c264253d8fd4f068c7c2ddb5ea3c63596ab5d23f Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sun, 19 May 2024 21:23:49 +0200 Subject: [PATCH] feat(toml): also recommend toml when theres toml files in the cwd --- lua/lazyvim/plugins/extras/lang/toml.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/lazyvim/plugins/extras/lang/toml.lua b/lua/lazyvim/plugins/extras/lang/toml.lua index 03ec5029..9dcc029d 100644 --- a/lua/lazyvim/plugins/extras/lang/toml.lua +++ b/lua/lazyvim/plugins/extras/lang/toml.lua @@ -2,6 +2,7 @@ return { recommended = function() return LazyVim.extras.wants({ ft = "toml", + root = "*.toml", }) end, {