From 2de889b866fa1411dec2ae7e8d5be46ebcb6b60b Mon Sep 17 00:00:00 2001 From: Joe Date: Thu, 28 Sep 2023 12:02:30 +0200 Subject: up --- .config/nvim/after/plugin/lsp.lua | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to '.config/nvim/after/plugin/lsp.lua') diff --git a/.config/nvim/after/plugin/lsp.lua b/.config/nvim/after/plugin/lsp.lua index 9a57e24..9a423d3 100644 --- a/.config/nvim/after/plugin/lsp.lua +++ b/.config/nvim/after/plugin/lsp.lua @@ -49,7 +49,6 @@ local cmp_mappings = lsp.defaults.cmp_mappings({ lsp.set_preferences({ -- sign_icons = { } - sign_icons = { Text = "󰉿", Method = "󰆧", @@ -99,19 +98,15 @@ cmp.setup { local lspconfig = require'lspconfig' lspconfig.ccls.setup { - init_options = { - compilationDatabaseDirectory = "build"; - index = { - threads = 0; - }; - clang = { - excludeArgs = { "-frounding-math"} ; - }; - } + init_options = { + compilationDatabaseDirectory = "build"; + index = { + threads = 0; + }; + clang = { + excludeArgs = { "-frounding-math"} ; + }; + } } lsp.setup() - -require'lspconfig'.ccls.setup({ - cmd = { '/usr/bin/ccls' }, -}) -- cgit v1.2.3