1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-13 04:51:15 +02:00

nvim: added markdown preview, restructured plugins for easier cleanup

This commit is contained in:
2023-07-29 14:54:59 +02:00
parent a065c3d401
commit 1ea26420bf
5 changed files with 74 additions and 72 deletions

View File

@@ -30,6 +30,11 @@ return require("packer").startup(function(use)
-- show signature while typing
use { 'ray-x/lsp_signature.nvim' }
-- preview for markdown filetypes
use { "iamcco/markdown-preview.nvim",
ft = { 'md' },
run = "cd app && npm install" }
-- latex asynchronous pdf rendering
use { 'donRaphaco/neotex',
ft = { 'tex' } }