From 8198c861f43c86701232c90dc11e93e5d7572f98 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Sun, 25 Apr 2021 21:18:23 +0300 Subject: [PATCH] [nvim] disable automatic folds in the fugitive window because they break the UI --- nvim/after/ftplugin/fugitive.vim | 1 + 1 file changed, 1 insertion(+) create mode 100644 nvim/after/ftplugin/fugitive.vim diff --git a/nvim/after/ftplugin/fugitive.vim b/nvim/after/ftplugin/fugitive.vim new file mode 100644 index 0000000..ab49c88 --- /dev/null +++ b/nvim/after/ftplugin/fugitive.vim @@ -0,0 +1 @@ +setlocal nofoldenable foldmethod=manual