[NVIM] Add macdown

This commit is contained in:
Fabian Ising
2024-04-05 12:59:08 +02:00
parent d9b50de699
commit 717a2c29b7

View File

@@ -77,6 +77,11 @@ Plug 'lervag/vimtex'
"Go
Plug 'fatih/vim-go'
"Macdown (only on macOS)
if has("macunix")
Plug 'hashrocket/vim-macdown'
endif
call plug#end()
" Run PlugInstall if there are missing plugins
@@ -287,4 +292,7 @@ if has("macunix")
else
let g:python3_host_prog="/usr/local/bin/python3"
endif
" Open MacDown preview on .md save
autocmd BufWritePost *.md MacDownPreview
endif