From f88fbad51d0fd47f73e31f7eddbc5851f76dd58d Mon Sep 17 00:00:00 2001 From: Phillip Miller Date: Fri, 15 Oct 2021 14:49:02 -0400 Subject: [PATCH] updating my_configs.vim for better markdown file editing --- vim/templates/darwin/my_configs.vim | 3 +++ vim/templates/linux/my_configs.vim | 3 +++ 2 files changed, 6 insertions(+) diff --git a/vim/templates/darwin/my_configs.vim b/vim/templates/darwin/my_configs.vim index 8aa4535..4f56d21 100644 --- a/vim/templates/darwin/my_configs.vim +++ b/vim/templates/darwin/my_configs.vim @@ -84,6 +84,9 @@ try " disable folding set nofoldenable + " Fix indentLine plugin for markdown backticks and invisible chars + let g:indentLine_fileTypeExclude = ['markdown'] + " Tab hotkeys map tb :tabprevious map tn :tabnext diff --git a/vim/templates/linux/my_configs.vim b/vim/templates/linux/my_configs.vim index 19fd832..b027d4b 100644 --- a/vim/templates/linux/my_configs.vim +++ b/vim/templates/linux/my_configs.vim @@ -84,6 +84,9 @@ try " disable folding set nofoldenable + " Fix indentLine plugin for markdown backticks and invisible chars + let g:indentLine_fileTypeExclude = ['markdown'] + " Tab hotkeys map tb :tabprevious map tn :tabnext