|
@@ -29,6 +29,7 @@ O = {
|
|
|
|
|
|
lang = {
|
|
lang = {
|
|
python = {
|
|
python = {
|
|
|
|
+ active = false,
|
|
linter = '',
|
|
linter = '',
|
|
-- @usage can be 'yapf', 'black'
|
|
-- @usage can be 'yapf', 'black'
|
|
formatter = '',
|
|
formatter = '',
|
|
@@ -46,9 +47,11 @@ O = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
dart = {
|
|
dart = {
|
|
|
|
+ active = false,
|
|
sdk_path = '/usr/lib/dart/bin/snapshots/analysis_server.dart.snapshot'
|
|
sdk_path = '/usr/lib/dart/bin/snapshots/analysis_server.dart.snapshot'
|
|
},
|
|
},
|
|
lua = {
|
|
lua = {
|
|
|
|
+ active = false,
|
|
-- @usage can be 'lua-format'
|
|
-- @usage can be 'lua-format'
|
|
formatter = '',
|
|
formatter = '',
|
|
autoformat = false,
|
|
autoformat = false,
|
|
@@ -59,6 +62,7 @@ O = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
sh = {
|
|
sh = {
|
|
|
|
+ active = false,
|
|
-- @usage can be 'shellcheck'
|
|
-- @usage can be 'shellcheck'
|
|
linter = '',
|
|
linter = '',
|
|
-- @usage can be 'shfmt'
|
|
-- @usage can be 'shfmt'
|
|
@@ -71,6 +75,7 @@ O = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
tsserver = {
|
|
tsserver = {
|
|
|
|
+ active = false,
|
|
-- @usage can be 'eslint'
|
|
-- @usage can be 'eslint'
|
|
linter = '',
|
|
linter = '',
|
|
-- @usage can be 'prettier'
|
|
-- @usage can be 'prettier'
|
|
@@ -83,6 +88,7 @@ O = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
json = {
|
|
json = {
|
|
|
|
+ active = false,
|
|
-- @usage can be 'prettier'
|
|
-- @usage can be 'prettier'
|
|
formatter = '',
|
|
formatter = '',
|
|
autoformat = false,
|
|
autoformat = false,
|
|
@@ -92,13 +98,15 @@ O = {
|
|
underline = true
|
|
underline = true
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- tailwindls = {
|
|
|
|
|
|
+ tailwindcss = {
|
|
|
|
+ active = false,
|
|
filetypes = {
|
|
filetypes = {
|
|
'html', 'css', 'scss', 'javascript', 'javascriptreact',
|
|
'html', 'css', 'scss', 'javascript', 'javascriptreact',
|
|
'typescript', 'typescriptreact'
|
|
'typescript', 'typescriptreact'
|
|
}
|
|
}
|
|
},
|
|
},
|
|
clang = {
|
|
clang = {
|
|
|
|
+ active = false,
|
|
diagnostics = {
|
|
diagnostics = {
|
|
virtual_text = {spacing = 0, prefix = ""},
|
|
virtual_text = {spacing = 0, prefix = ""},
|
|
signs = true,
|
|
signs = true,
|
|
@@ -106,6 +114,7 @@ O = {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
ruby = {
|
|
ruby = {
|
|
|
|
+ active = false,
|
|
diagnostics = {
|
|
diagnostics = {
|
|
virtualtext = {spacing = 0, prefix = ""},
|
|
virtualtext = {spacing = 0, prefix = ""},
|
|
signs = true,
|
|
signs = true,
|
|
@@ -113,9 +122,31 @@ O = {
|
|
},
|
|
},
|
|
filetypes = {'rb', 'erb', 'rakefile'}
|
|
filetypes = {'rb', 'erb', 'rakefile'}
|
|
},
|
|
},
|
|
- go = {}
|
|
|
|
- -- css = {formatter = '', autoformat = false, virtual_text = true},
|
|
|
|
- -- json = {formatter = '', autoformat = false, virtual_text = true}
|
|
|
|
|
|
+ go = {active = false},
|
|
|
|
+ elixer = {active = false},
|
|
|
|
+ vim = {active = false},
|
|
|
|
+ yaml = {active = false},
|
|
|
|
+ terraform = {active = false},
|
|
|
|
+ rust = {active = false},
|
|
|
|
+ svelte = {active = false},
|
|
|
|
+ php = {active = false},
|
|
|
|
+ latex = {active = false},
|
|
|
|
+ kotlin = {active = false},
|
|
|
|
+ html = {active = false},
|
|
|
|
+ elm = {active = false},
|
|
|
|
+ emmet = {active = false},
|
|
|
|
+ graphql = {active = false},
|
|
|
|
+ efm = {active = true},
|
|
|
|
+ docker = {active = false},
|
|
|
|
+ cmake = {active = false},
|
|
|
|
+ java = {active = false},
|
|
|
|
+ css = {
|
|
|
|
+ active = false,
|
|
|
|
+
|
|
|
|
+ formatter = '', autoformat = false, virtual_text = true},
|
|
|
|
+ json = {
|
|
|
|
+ active = false,
|
|
|
|
+ formatter = '', autoformat = false, virtual_text = true}
|
|
|
|
|
|
},
|
|
},
|
|
|
|
|