From 5133c963153101780a82a63ca3e498f70be88209 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 4 Aug 2023 20:44:43 -0500 Subject: [PATCH] refactor(nvim): set json conceallevel to 1 --- 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 7a539563..a96b9ae1 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 = 0 +opt_local.conceallevel = 1 opt_local.tabstop = 2 opt_local.shiftwidth = 2