summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-12-19 16:14:18 +0000
committerAkshay <[email protected]>2021-12-19 16:14:18 +0000
commit458ec6367670a847cc7a48f8ab32299b22509417 (patch)
tree519d7a4f1e603b4d84af3f909a159df72730c35d /lua
parent456232000cc2a5f20b5eb87f268ffea2e3667ac6 (diff)
use diagnostic.get over diagnostic.get_count
Diffstat (limited to 'lua')
-rw-r--r--lua/lsp.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/lsp.lua b/lua/lsp.lua
index b21ea70..62c49d2 100644
--- a/lua/lsp.lua
+++ b/lua/lsp.lua
@@ -58,7 +58,8 @@ nvim_lsp.ccls.setup {
58 threads = 0; 58 threads = 0;
59 }; 59 };
60 clang = { 60 clang = {
61 excludeArgs = { "-frounding-math"} ; 61 extraArgs = { "-fopenmp" };
62 excludeArgs = { "-frounding-math" } ;
62 }; 63 };
63 } 64 }
64} 65}