From cd1bd5a5c2bab69ea8787e053c40cdfebc27e9f8 Mon Sep 17 00:00:00 2001 From: "smith.hu" Date: Fri, 22 Sep 2023 22:02:20 +0800 Subject: [PATCH] [add] lazyvim.lua is able to disable autofomrat --- lua/plugins/lazyvim.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/plugins/lazyvim.lua diff --git a/lua/plugins/lazyvim.lua b/lua/plugins/lazyvim.lua new file mode 100644 index 0000000..bd0b31d --- /dev/null +++ b/lua/plugins/lazyvim.lua @@ -0,0 +1,8 @@ +return { + { + "neovim/nvim-lspconfig", + opts = { + autoformat = false, + }, + }, +}