diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-06 15:08:20 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-06 15:08:20 +0200 |
commit | d9ee362537a34473b32ad3b4a1d7feb56a6b6811 (patch) | |
tree | 5d0cf440bb0893f679f21963e79f866ad3a73d35 /after | |
parent | 57badea2dc9aff361d528aeeeb22ac2e85da1435 (diff) | |
download | vim-polyglot-d9ee362537a34473b32ad3b4a1d7feb56a6b6811.tar.gz vim-polyglot-d9ee362537a34473b32ad3b4a1d7feb56a6b6811.zip |
Fix weird indentation issue of yaml
Diffstat (limited to 'after')
-rw-r--r-- | after/ftplugin/yaml.vim | 2 | ||||
-rw-r--r-- | after/syntax/yaml.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/after/ftplugin/yaml.vim b/after/ftplugin/yaml.vim index db608fa4..69785fc2 100644 --- a/after/ftplugin/yaml.vim +++ b/after/ftplugin/yaml.vim @@ -1,4 +1,4 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'yaml') == -1 +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'yaml-extras') == -1 " Vim indent file " Language: Yaml diff --git a/after/syntax/yaml.vim b/after/syntax/yaml.vim index 097d1535..3a1e89a2 100644 --- a/after/syntax/yaml.vim +++ b/after/syntax/yaml.vim @@ -1,4 +1,4 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'yaml') == -1 +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'yaml-extras') == -1 " To make this file do stuff, add something like the following (without the " leading ") to your ~/.vimrc: |