From 9aabf8d8e7c6b225c8160420271bc311fc21baf5 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@clevo" Date: Tue, 2 Aug 2022 00:16:31 +0200 Subject: [PATCH] Fix add NERDTree plugin --- roles/neovim/files/lua/plugin_options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/neovim/files/lua/plugin_options.lua b/roles/neovim/files/lua/plugin_options.lua index 79ce338..2d4e822 100644 --- a/roles/neovim/files/lua/plugin_options.lua +++ b/roles/neovim/files/lua/plugin_options.lua @@ -1,4 +1,4 @@ -- NERDTree -let NERDTreeIgnore=['^__pycache__$', '\.pyc', '\~$'] +vim.cmd("let NERDTreeIgnore=['^__pycache__$', '\\.pyc', '\\~$']") vim.keymap.set('n', 'ne', 'NERDTree', { remap = true })