Disable auto-formatting for nvim

This commit is contained in:
Peter Cai 2024-04-08 18:55:16 -04:00
parent 5ac364186d
commit a03404e625
1 changed files with 2 additions and 0 deletions

View File

@ -2,3 +2,5 @@
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
vim.opt.relativenumber = false
-- Autoformatting can break stuff; turn it off.
vim.g.autoformat = false