From 78c1fd2ca59e370849a5a21d686ba33efc121a20 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Mon, 8 Jan 2024 16:21:30 +0100 Subject: [PATCH] Add marks plugin to nvim --- vim/lua/pack/setup.lua | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/vim/lua/pack/setup.lua b/vim/lua/pack/setup.lua index 5681f1f..dcdefc4 100644 --- a/vim/lua/pack/setup.lua +++ b/vim/lua/pack/setup.lua @@ -35,11 +35,23 @@ use { end }; { 'jinh0/eyeliner.nvim', config = function() - require('eyeliner').setup { - highlight_on_key = true; - dim = true; - } - end}; + require('eyeliner').setup { + highlight_on_key = true; + dim = true; + } + end + }; + { + 'chentoast/marks.nvim'; + config = function() + require'marks'.setup { + sign_priority = { lower=10, upper=15, builtin=8, bookmark=20 }, + excluded_filetypes = {}, + excluded_buftypes = {}, + mappings = {} + } + end + }; 'leafo/moonscript-vim'; 'neovim/nvim-lspconfig'; 'pigpigyyy/Yuescript-vim';