summaryrefslogtreecommitdiffstats
path: root/ftplugin/gitconfig.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2017-12-06 13:05:56 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2017-12-06 13:05:56 +0100
commit9fe009095afdb86f6f771109ac454ccfc5340f31 (patch)
tree1bb6b2fd7e2ff2b94bd3dd8ce6fdb735e873237b /ftplugin/gitconfig.vim
parentdce9e8dec5ef51730291c7bbff3e3997433eabbd (diff)
downloadvim-polyglot-9fe009095afdb86f6f771109ac454ccfc5340f31.tar.gz
vim-polyglot-9fe009095afdb86f6f771109ac454ccfc5340f31.zip
Change julia provider to JuliaEditorSupport/julia-vim, closes #253
Diffstat (limited to 'ftplugin/gitconfig.vim')
-rw-r--r--ftplugin/gitconfig.vim19
1 files changed, 0 insertions, 19 deletions
diff --git a/ftplugin/gitconfig.vim b/ftplugin/gitconfig.vim
deleted file mode 100644
index 23282522..00000000
--- a/ftplugin/gitconfig.vim
+++ /dev/null
@@ -1,19 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1
-
-" Vim filetype plugin
-" Language: git config file
-" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
-" Last Change: 2009 Dec 24
-
-" Only do this when not done yet for this buffer
-if (exists("b:did_ftplugin"))
- finish
-endif
-let b:did_ftplugin = 1
-
-setlocal formatoptions-=t formatoptions+=croql
-setlocal comments=:#,:; commentstring=;\ %s
-
-let b:undo_ftplugin = "setl fo< com< cms<"
-
-endif