diff options
| author | Ellison Leão <ellisonleao@gmail.com> | 2021-03-25 11:37:44 -0300 |
|---|---|---|
| committer | Ellison Leão <ellisonleao@gmail.com> | 2021-03-25 11:37:44 -0300 |
| commit | d167ddc70cdf52bf2ede11ba706811d6e9740881 (patch) | |
| tree | 1b344f7a126d8ba0f54e5c1efca2af216ee5601f /lua | |
| parent | d54da184123794909e96503ebafa2bf2f79fc36e (diff) | |
| download | gruvbox-d167ddc70cdf52bf2ede11ba706811d6e9740881.tar.gz gruvbox-d167ddc70cdf52bf2ede11ba706811d6e9740881.tar.xz | |
table concat declaration must go outside of lush func
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/gruvbox/languages.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/gruvbox/languages.lua b/lua/gruvbox/languages.lua index 3d12b91..5cfbb52 100644 --- a/lua/gruvbox/languages.lua +++ b/lua/gruvbox/languages.lua @@ -2,6 +2,7 @@ local lush = require("lush") local base = require("gruvbox.base") local styles = require("gruvbox.settings").styles +local table_concat = table.concat -- golang local golang = lush(function() @@ -125,7 +126,6 @@ local clojure = lush(function() end) local html = lush(function() - local table_concat = table.concat return { htmlTag {base.GruvboxAquaBold}, htmlEndTag {base.GruvboxAquaBold}, |
