summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter/install.lua
diff options
context:
space:
mode:
authorRasmus Michelsen <RMichelsen@protonmail.com>2020-09-05 22:16:12 +0200
committerThomas Vigouroux <tomvig38@gmail.com>2020-09-06 13:42:24 +0200
commit50de57711b0c7b4116f97dfcbb5a991d7974e7f4 (patch)
treea2b83489d58c10a3516dfc42f336b68926660184 /lua/nvim-treesitter/install.lua
parent07c0e837ab8e9bec41dcfc59b63b5e80703659a8 (diff)
Fixed table insertion
Diffstat (limited to 'lua/nvim-treesitter/install.lua')
-rw-r--r--lua/nvim-treesitter/install.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/install.lua b/lua/nvim-treesitter/install.lua
index 6740a814..3b75362c 100644
--- a/lua/nvim-treesitter/install.lua
+++ b/lua/nvim-treesitter/install.lua
@@ -73,7 +73,7 @@ local function select_args(repo)
'-lstdc++',
}
if fn.has('win32') == 0 then
- table.insert('-fPIC')
+ table.insert(args, '-fPIC')
end
return args
end