feat(nvim): add mind.nvim
This commit is contained in:
parent
5a85d36636
commit
0242869c1f
@ -729,10 +729,21 @@ return packer.startup({
|
|||||||
|
|
||||||
-- Surround actions
|
-- Surround actions
|
||||||
use({
|
use({
|
||||||
'https://github.com/kylechui/nvim-surround.git',
|
"https://github.com/kylechui/nvim-surround.git",
|
||||||
config = function()
|
config = function()
|
||||||
require("nvim-surround").setup({})
|
require("nvim-surround").setup({})
|
||||||
end
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Note taking, tasks
|
||||||
|
use({
|
||||||
|
"https://github.com/phaazon/mind.nvim",
|
||||||
|
config = function()
|
||||||
|
require("mind").setup({
|
||||||
|
edit = { data_extension = ".norg" },
|
||||||
|
data_header = "* %s",
|
||||||
|
})
|
||||||
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Leave at end!!!
|
-- Leave at end!!!
|
||||||
|
Loading…
Reference in New Issue
Block a user