diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-07-03 15:55:59 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-03 15:55:59 -0700 |
| commit | e1160be89ae6a3ece4664c8e32a82b8637f4b177 (patch) | |
| tree | 77d533dc9606ca7e9b30d1a96baebf3de325d2a8 /lua/lspconfig/ccls.lua | |
| parent | [docgen] Update CONFIG.md (diff) | |
| parent | ci: lint and format with stylua (diff) | |
| download | nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.gz nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.bz2 nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.lz nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.xz nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.zst nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.zip | |
Merge pull request #1029 from mjlbach/ci/format_with_stylua
ci: lint and format with stylua
Diffstat (limited to 'lua/lspconfig/ccls.lua')
| -rw-r--r-- | lua/lspconfig/ccls.lua | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lua/lspconfig/ccls.lua b/lua/lspconfig/ccls.lua index 68cf2d47..120253c3 100644 --- a/lua/lspconfig/ccls.lua +++ b/lua/lspconfig/ccls.lua @@ -1,14 +1,14 @@ -local configs = require 'lspconfig/configs' -local util = require 'lspconfig/util' +local configs = require "lspconfig/configs" +local util = require "lspconfig/util" configs.ccls = { default_config = { - cmd = {"ccls"}; - filetypes = {"c", "cpp", "objc", "objcpp"}; + cmd = { "ccls" }, + filetypes = { "c", "cpp", "objc", "objcpp" }, root_dir = function(fname) return util.root_pattern("compile_commands.json", "compile_flags.txt", ".git")(fname) or util.path.dirname(fname) - end; - }; + end, + }, docs = { description = [[ https://github.com/MaskRay/ccls/wiki @@ -35,10 +35,10 @@ lspconfig.ccls.setup { ``` -]]; +]], default_config = { - root_dir = [[root_pattern("compile_commands.json", "compile_flags.txt", ".git") or dirname]]; - }; - }; + root_dir = [[root_pattern("compile_commands.json", "compile_flags.txt", ".git") or dirname]], + }, + }, } -- vim:et ts=2 sw=2 |
