From 4377ee887f510d77a835a9ce75d41171a8b42e8b Mon Sep 17 00:00:00 2001 From: zoomiti Date: Sun, 21 Aug 2022 01:55:40 -0400 Subject: [PATCH] Fixed code folds --- .config/nvim/init.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index e754f43..70c5d90 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -281,7 +281,7 @@ endif if has("nvim") lua << EOF -- Setup treesitter - require'nvim-treesitter.configs'.setup { + require'nvim-treesitter.configs'.setup { --{{{ -- A list of parser names, or "all" ensure_installed = { "c", "lua", "rust", "vim" }, @@ -412,7 +412,7 @@ if has("nvim") require('rust-tools').setup({ server = {capabilities = capabilities, on_attach = on_attach } }) - require('lean').setup{ + require('lean').setup{ --{{{ -- Enable the Lean language server(s)? -- -- false to disable, otherwise should be a table of options to pass to @@ -472,7 +472,7 @@ if has("nvim") -- Use a different priority for the signs priority = 10, }, - } + } -- }}} EOF endif