From: Samir Benmendil Date: Sun, 29 Oct 2023 16:17:46 +0000 (+0000) Subject: nvim: set autoformat false X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/60120eccce7abb7a9e776ee90721e41e4a58a589?ds=sidebyside nvim: set autoformat false This seems to be a global setting now rather than a lazyvim thing. Maybe it affects other things too. --- 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")