From 810c87381a55cacc25b2beb88999c6149e2c79b4 Mon Sep 17 00:00:00 2001 From: mace Date: Sun, 1 Oct 2023 16:23:14 +0200 Subject: [PATCH] added markdown and barbar --- lua/custom/plugins/init.lua | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index ed91112..fc43491 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -74,4 +74,29 @@ return { }, }, "easymotion/vim-easymotion", + + -- Markdown + { + "iamcco/markdown-preview.nvim", + ft = "markdown", + build = function() + vim.fn["mkdp#util#install"]() + end, + }, + + { + 'romgrk/barbar.nvim', + dependencies = { + 'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status + 'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons + }, + init = function() vim.g.barbar_auto_setup = false end, + opts = { + -- lazy.nvim will automatically call setup for you. put your options here, anything missing will use the default: + -- animation = true, + -- insert_at_start = true, + -- …etc. + }, + version = '^1.0.0', -- optional: only update when a new 1.x version is released + }, }