diff options
| author | christianchiarulli <[email protected]> | 2021-07-14 23:15:17 -0400 | 
|---|---|---|
| committer | christianchiarulli <[email protected]> | 2021-07-14 23:15:17 -0400 | 
| commit | 7252ba7a312bbf39cd83843a5eaca9bd35605427 (patch) | |
| tree | 2fdaa30726cd1c5522efd52efec2d0864e25f039 /lua/lang | |
| parent | f58782563ea933f31e8886f511ec2b5824def19b (diff) | |
| parent | 1411478e46a397b6649c44c82b67c9f48c53738a (diff) | |
Merge branch 'rolling' of github.com:ChristianChiarulli/LunarVim into rolling
Diffstat (limited to 'lua/lang')
| -rw-r--r-- | lua/lang/lua.lua | 24 | ||||
| -rw-r--r-- | lua/lang/zig.lua | 5 | 
2 files changed, 14 insertions, 15 deletions
diff --git a/lua/lang/lua.lua b/lua/lang/lua.lua index 5f7b18cb..0128b55a 100644 --- a/lua/lang/lua.lua +++ b/lua/lang/lua.lua @@ -1,18 +1,18 @@  local M = {}  M.config = function() -    O.lang.lua = { -      diagnostics = { -        virtual_text = { spacing = 0, prefix = "ï„‘" }, -        signs = true, -        underline = true, -      }, -      formatter = { -        exe = "stylua", -        args = {}, -        stdin = false, -      }, -    } +  O.lang.lua = { +    diagnostics = { +      virtual_text = { spacing = 0, prefix = "ï„‘" }, +      signs = true, +      underline = true, +    }, +    formatter = { +      exe = "stylua", +      args = {}, +      stdin = false, +    }, +  }  end  M.format = function() diff --git a/lua/lang/zig.lua b/lua/lang/zig.lua index 1da329f5..e2651419 100644 --- a/lua/lang/zig.lua +++ b/lua/lang/zig.lua @@ -16,10 +16,9 @@ M.lint = function()  end  M.lsp = function() - -if require("lv-utils").check_lsp_client_active "zls" then +  if require("lv-utils").check_lsp_client_active "zls" then      return -end +  end    -- Because lspinstall don't support zig yet,    -- So we need zls preset in global lib    -- Further custom install zls in  | 
