diff options
| author | José Juan Loeza Sierra <jj@xz6ze.com> | 2026-03-31 20:51:00 -0700 |
|---|---|---|
| committer | José Juan Loeza Sierra <jj@xz6ze.com> | 2026-03-31 20:51:00 -0700 |
| commit | 6bd0938c018b52c138d608977043467eae93fefd (patch) | |
| tree | d938dd42afa04270c8983509d3c2eb5b624066f9 /dot-config/nvim/plugin/lsp.lua | |
| parent | 288f9c41275288a2bd0193986f22206c81c2b5cf (diff) | |
remove neovim
Diffstat (limited to 'dot-config/nvim/plugin/lsp.lua')
| -rw-r--r-- | dot-config/nvim/plugin/lsp.lua | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/dot-config/nvim/plugin/lsp.lua b/dot-config/nvim/plugin/lsp.lua deleted file mode 100644 index 557063b..0000000 --- a/dot-config/nvim/plugin/lsp.lua +++ /dev/null @@ -1,34 +0,0 @@ -vim.pack.add({ - "https://github.com/neovim/nvim-lspconfig", - "https://github.com/mason-org/mason.nvim", - "https://github.com/stevearc/conform.nvim", -}) - -require("mason").setup() - -vim.lsp.enable({ - "expert", -- elixir - "lua_ls", -- lua - "prettier", - "ruff", --python - "tinymist", -- typst -}) - -require("conform").setup({ - -- Formatters - formatters_by_ft = { - elixir = { "mix" }, - javascript = { "prettier" }, - lua = { "stylua" }, - haskell = { "ormolu" }, - python = { "ruff format" }, - typescript = { "prettier" }, - typst = { "typstyle" }, - }, - - format_on_save = { - -- I recommend these options. See :help conform.format for details. - lsp_format = "fallback", - timeout_ms = 500, - }, -}) |
