summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter/parsers.lua
diff options
context:
space:
mode:
authorgbprod <contact@gb-prod.fr>2022-10-03 09:53:27 +0200
committerChristian Clason <christian.clason@uni-due.de>2022-10-03 10:06:41 +0200
commit179a06bc8b4b028960dc105feceb5a4b1cbcb41d (patch)
treef758874f8ae990362bf299c139efa7f7bc98538f /lua/nvim-treesitter/parsers.lua
parentd8a695a1ac493096e6f7a0916a962b979d290039 (diff)
style: fix code styling according to Stylua
Diffstat (limited to 'lua/nvim-treesitter/parsers.lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index a19fcee8..dfa56296 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -1259,7 +1259,7 @@ function M.ft_to_lang(ft)
end
function M.available_parsers()
- if vim.fn.executable("tree-sitter") == 1 and vim.fn.executable("node") == 1 then
+ if vim.fn.executable "tree-sitter" == 1 and vim.fn.executable "node" == 1 then
return vim.tbl_keys(M.list)
else
return vim.tbl_filter(function(p)