diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-12-04 17:49:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-04 17:49:12 +0800 |
commit | b079a9d2e76062ee7275e35a4623108550e836a5 (patch) | |
tree | e12bd0e779404a977c17fa1107979cc178cf6b5f /runtime/lua/vim | |
parent | ae93c7f369a174f3d738ab55030de2c9dfc10c57 (diff) | |
download | rneovim-b079a9d2e76062ee7275e35a4623108550e836a5.tar.gz rneovim-b079a9d2e76062ee7275e35a4623108550e836a5.tar.bz2 rneovim-b079a9d2e76062ee7275e35a4623108550e836a5.zip |
vim-patch:9.1.0902: filetype: Conda configuration files are not recognized (#31445)
Problem: filetype: Conda configuration files are not recognized
Solution: detect '.condarc' and 'condarc' files as yaml filetype.
(zeertzjq)
closes: vim/vim#16162
https://github.com/vim/vim/commit/876de275cb3affa5910664cc52a5177c214313e8
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 5d771c30e9..b4c37dd160 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1873,6 +1873,8 @@ local filename = { ['.clang-tidy'] = 'yaml', ['yarn.lock'] = 'yaml', matplotlibrc = 'yaml', + ['.condarc'] = 'yaml', + condarc = 'yaml', zathurarc = 'zathurarc', ['/etc/zprofile'] = 'zsh', ['.zlogin'] = 'zsh', |