diff options
author | Nawfal bin Mohmad Rouyan <[email protected]> | 2021-04-02 13:48:41 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-02 01:48:41 -0400 |
commit | 01ead22951ab1a93fcdc3fbc42fa708c286edae0 (patch) | |
tree | 3cd3a4fb1d468341e792d7e77a5e9e70feb01900 /lua | |
parent | 4ab0d1ff05059f30b511d6c3330bf55ae3514768 (diff) |
Fix clang global vars nil value (#215)
Diffstat (limited to 'lua')
-rw-r--r-- | lua/nv-globals.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/nv-globals.lua b/lua/nv-globals.lua index 48b7432b..212415b4 100644 --- a/lua/nv-globals.lua +++ b/lua/nv-globals.lua @@ -52,6 +52,9 @@ O = { }, tailwindls = { filetypes = {'html', 'css', 'scss', 'javascript', 'javascriptreact', 'typescript', 'typescriptreact'} + }, + clang = { + diagnostics = {virtual_text = true, signs = true, underline = true} } -- css = {formatter = '', autoformat = false, virtual_text = true}, -- json = {formatter = '', autoformat = false, virtual_text = true} |