Add marks plugin to nvim
This commit is contained in:
parent
5bf3ffc167
commit
78c1fd2ca5
1 changed files with 17 additions and 5 deletions
|
@ -39,7 +39,19 @@ use {
|
||||||
highlight_on_key = true;
|
highlight_on_key = true;
|
||||||
dim = true;
|
dim = true;
|
||||||
}
|
}
|
||||||
end};
|
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';
|
'leafo/moonscript-vim';
|
||||||
'neovim/nvim-lspconfig';
|
'neovim/nvim-lspconfig';
|
||||||
'pigpigyyy/Yuescript-vim';
|
'pigpigyyy/Yuescript-vim';
|
||||||
|
|
Loading…
Reference in a new issue