From a4003a877ee4ab2b1c9ace0ae714176a0b768ce7 Mon Sep 17 00:00:00 2001 From: dricottone Date: Fri, 18 Oct 2019 09:23:49 -0400 Subject: [PATCH] Adding ftplugins, TODO --- TODO.md | 7 +++++++ ftplugin/bash.vim | 5 +++++ ftplugin/markdown.vim | 5 +++++ ftplugin/sh.vim | 5 +++++ ftplugin/spss.vim | 5 +++++ ftplugin/xml.vim | 5 +++++ 6 files changed, 32 insertions(+) create mode 100644 TODO.md create mode 100644 ftplugin/bash.vim create mode 100644 ftplugin/markdown.vim create mode 100644 ftplugin/sh.vim create mode 100644 ftplugin/spss.vim create mode 100644 ftplugin/xml.vim diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..e158873 --- /dev/null +++ b/TODO.md @@ -0,0 +1,7 @@ +Shell Syntax and Colorscheme +============================ ++ All shell languages use same colorscheme ('shell') ++ Add custom syntax for 'sh', to detect non-portable bash + + http://tldp.org/LDP/abs/html/portabilityissues.html ++ Add groups to 'shell' colorscheme such as 'bashNonPortable' + diff --git a/ftplugin/bash.vim b/ftplugin/bash.vim new file mode 100644 index 0000000..90b0896 --- /dev/null +++ b/ftplugin/bash.vim @@ -0,0 +1,5 @@ +" vim filetype plugin file +" Load SPSS colorscheme on opening a buffer with filetype 'bash' + +colorscheme shell + diff --git a/ftplugin/markdown.vim b/ftplugin/markdown.vim new file mode 100644 index 0000000..067367e --- /dev/null +++ b/ftplugin/markdown.vim @@ -0,0 +1,5 @@ +" vim filetype plugin file +" Load SPSS colorscheme on opening a buffer with filetype 'markdown' + +colorscheme markdown + diff --git a/ftplugin/sh.vim b/ftplugin/sh.vim new file mode 100644 index 0000000..114b314 --- /dev/null +++ b/ftplugin/sh.vim @@ -0,0 +1,5 @@ +" vim filetype plugin file +" Load SPSS colorscheme on opening a buffer with filetype 'sh' + +colorscheme shell + diff --git a/ftplugin/spss.vim b/ftplugin/spss.vim new file mode 100644 index 0000000..42b7cb3 --- /dev/null +++ b/ftplugin/spss.vim @@ -0,0 +1,5 @@ +" vim filetype plugin file +" Load SPSS colorscheme on opening a buffer with filetype 'spss' + +colorscheme spss + diff --git a/ftplugin/xml.vim b/ftplugin/xml.vim new file mode 100644 index 0000000..5f3f598 --- /dev/null +++ b/ftplugin/xml.vim @@ -0,0 +1,5 @@ +" vim filetype plugin file +" Load SPSS colorscheme on opening a buffer with filetype 'xml' + +colorscheme xml + -- 2.45.2