From 60120eccce7abb7a9e776ee90721e41e4a58a589 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sun, 29 Oct 2023 16:17:46 +0000 Subject: [PATCH] nvim: set autoformat false This seems to be a global setting now rather than a lazyvim thing. Maybe it affects other things too. --- nvim/init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvim/init.lua b/nvim/init.lua index 5f7a282..ffbd395 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -1,6 +1,9 @@ -- load original vimrc file vim.cmd([[ source $XDG_CONFIG_HOME/vim/vimrc ]]) +-- TODO: review if I want this for some buffers +vim.g.autoformat = false + -- bootstrap lazy.nvim, LazyVim and your plugins package.loaded["lazyvim.config.options"] = true require("config.lazy") -- 2.48.1