summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-14 12:59:02 -0400
committerseth <[email protected]>2024-07-14 13:47:39 -0400
commit00d5ec09d45d09451b21ab58054e40f593577b15 (patch)
treeadea3dbc1e1d2e0ccd913128a03f2f3b3dbdb409 /lua
parent8c76161eb8cf752c00a65cccccd381fb3bc5955d (diff)
efmls -> nvim-lint
also only use native lsps for formatting
Diffstat (limited to 'lua')
-rw-r--r--lua/getchoo/plugins/efmls.lua58
1 files changed, 0 insertions, 58 deletions
diff --git a/lua/getchoo/plugins/efmls.lua b/lua/getchoo/plugins/efmls.lua
deleted file mode 100644
index 92d61e9..0000000
--- a/lua/getchoo/plugins/efmls.lua
+++ /dev/null
@@ -1,58 +0,0 @@
-local alex = require("efmls-configs.linters.alex")
-alex.rootMarkers = nil
-local actionlint = require("efmls-configs.linters.actionlint")
-local beautysh = require("efmls-configs.formatters.beautysh")
-local fish_indent = require("efmls-configs.formatters.fish_indent")
-local prettier = require("efmls-configs.formatters.prettier")
-local prettier_eslint = require("efmls-configs.formatters.prettier_eslint")
-local selene = require("efmls-configs.linters.selene")
-local statix = require("efmls-configs.linters.statix")
-local stylua = require("efmls-configs.formatters.stylua")
-
-local languages = {
- all = { alex },
-
- bash = {
- beautysh,
- },
-
- css = { prettier },
-
- fish = { fish_indent },
-
- html = { prettier },
-
- javascript = { prettier_eslint },
-
- json = { prettier },
-
- lua = { selene, stylua },
-
- nix = { statix },
-
- sass = { prettier },
-
- scss = { prettier },
-
- sh = { beautysh },
-
- typescript = { prettier_eslint },
-
- yaml = { prettier, actionlint },
-
- zsh = { beautysh },
-}
-
-return {
- filetypes = vim.tbl_keys(languages),
-
- settings = {
- rootMarkers = { ".git/" },
- languages = languages,
- },
-
- init_options = {
- documentFormatting = true,
- documentRangeFormatting = true,
- },
-}