diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2021-06-09 21:37:56 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2021-06-09 21:37:56 +0200 |
commit | 4899585281beab51e5dff1d9ae4d3159244a8275 (patch) | |
tree | 1624741b8d1a5366568addbb90b1119587636459 /autoload/polyglot/init.vim | |
parent | 4f997c5c82d49ce3e2791eb0679e992751bf39a7 (diff) | |
download | vim-polyglot-4899585281beab51e5dff1d9ae4d3159244a8275.tar.gz vim-polyglot-4899585281beab51e5dff1d9ae4d3159244a8275.zip |
Add org mode, close #706
Diffstat (limited to 'autoload/polyglot/init.vim')
-rw-r--r-- | autoload/polyglot/init.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/autoload/polyglot/init.vim b/autoload/polyglot/init.vim index 781c9e57..7aa94939 100644 --- a/autoload/polyglot/init.vim +++ b/autoload/polyglot/init.vim @@ -169,6 +169,10 @@ let did_load_filetypes = 1 " DO NOT EDIT CODE BELOW, IT IS GENERATED WITH MAKEFILE +if !has_key(g:polyglot_is_disabled, 'org') + au BufNewFile,BufRead *.org setf org +endif + if !has_key(g:polyglot_is_disabled, 'mermaid') au BufNewFile,BufRead *.mermaid,*.mm,*.mmd setf mermaid endif |