From 5ef8ad7fb34fb21ae0cd66cb66350835c5a3657e Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 19 Feb 2023 17:09:13 -0600 Subject: [PATCH] refactor(nvim): set conceallevel to 0 for json files This solves some nuisances in which I can't tell if some indicies are quoted or not --- dots/.nvim-environments/primary/config/after/ftplugin/json.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/dots/.nvim-environments/primary/config/after/ftplugin/json.lua b/dots/.nvim-environments/primary/config/after/ftplugin/json.lua index c7b84cb5..7a539563 100644 --- a/dots/.nvim-environments/primary/config/after/ftplugin/json.lua +++ b/dots/.nvim-environments/primary/config/after/ftplugin/json.lua @@ -1,4 +1,5 @@ local opt_local = vim.opt_local +opt_local.conceallevel = 0 opt_local.tabstop = 2 opt_local.shiftwidth = 2