From d38f3938adfe87bc2d89883a854a135147c7168a Mon Sep 17 00:00:00 2001 From: rootiest Date: Fri, 4 Oct 2024 16:56:08 -0400 Subject: [PATCH] feat: add autoformat to options -- Makes it clear how to disable autoformatting --- lua/config/options.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/config/options.lua b/lua/config/options.lua index a3f9db2..3afe3ca 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -27,6 +27,8 @@ vim.g.loaded_ruby_provider = 0 ---@type integer Options: <0|1> vim.g.lazyvim_python_lsp = "pyright" ---@type string Options: [python lsp] -- Open all folds by default vim.opt.foldlevel = 99 ---@type integer Options: <0-99> +-- Autoformat +vim.g.autoformat = true ---@type boolean Options: -- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROOTIEST ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ @@ -53,7 +55,7 @@ vim.g.auto_save = true ---@type boolean Options: -- Animate blinky cursor vim.g.blinky = true ---@type boolean Options: -- Use experimental cmp performance fork -vim.g.cmp_performance_enabled = true ---@type boolean Options: +vim.g.cmp_performance_enabled = true ---@type boolean Options: -- Use dev mode for rootiest plugins vim.g.rootiest_dev = false ---@type boolean Options: