From d0a3e0c363dfd3bf16506d036cb16119339e16ee Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Sat, 24 May 2025 17:42:40 +0300 Subject: [PATCH] neovim: disable formatting in luals --- neovim/.config/nvim/after/plugin/lsp/other.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neovim/.config/nvim/after/plugin/lsp/other.lua b/neovim/.config/nvim/after/plugin/lsp/other.lua index b51fb00..f917346 100644 --- a/neovim/.config/nvim/after/plugin/lsp/other.lua +++ b/neovim/.config/nvim/after/plugin/lsp/other.lua @@ -5,6 +5,9 @@ vim.lsp.config.lua_ls = { root_markers = { ".luarc.json", ".git", vim.uv.cwd() }, settings = { Lua = { + format = { + enable = false, + }, telemetry = { enable = false, },