From a874b052c63e37e9a55e313d5c6b4deac208ace6 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 21 Aug 2023 19:12:09 -0500 Subject: [PATCH] refactor(nvim): set json conceallevel to 2 --- dots/.config/nvim/after/ftplugin/json.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/nvim/after/ftplugin/json.lua b/dots/.config/nvim/after/ftplugin/json.lua index a96b9ae1..dc43a21b 100644 --- a/dots/.config/nvim/after/ftplugin/json.lua +++ b/dots/.config/nvim/after/ftplugin/json.lua @@ -1,5 +1,5 @@ local opt_local = vim.opt_local -opt_local.conceallevel = 1 +opt_local.conceallevel = 2 opt_local.tabstop = 2 opt_local.shiftwidth = 2