Adding marks and bbq to nvim
This commit is contained in:
parent
898d1515eb
commit
c9430d3b5e
1 changed files with 20 additions and 1 deletions
19
init.lua
19
init.lua
|
|
@ -303,6 +303,25 @@ require('packer').startup(function(use)
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
use({
|
||||||
|
"chentoast/marks.nvim",
|
||||||
|
config = function()
|
||||||
|
require("marks").setup()
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
use({
|
||||||
|
"utilyre/barbecue.nvim",
|
||||||
|
tag = "*",
|
||||||
|
requires = {
|
||||||
|
"SmiteshP/nvim-navic",
|
||||||
|
"nvim-tree/nvim-web-devicons",
|
||||||
|
},
|
||||||
|
config = function()
|
||||||
|
require("barbecue").setup()
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
if packer_bootstrap then
|
if packer_bootstrap then
|
||||||
require('packer').sync()
|
require('packer').sync()
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue