10 lines
268 B
Lua
10 lines
268 B
Lua
|
|
return {
|
||
|
|
'renerocksai/telekasten.nvim',
|
||
|
|
dependencies = {'nvim-telescope/telescope.nvim'},
|
||
|
|
config = function()
|
||
|
|
require('telekasten').setup({
|
||
|
|
home = vim.fn.expand("~/Personal/Notes/Notebook"), -- Put the name of your notes directory here
|
||
|
|
})
|
||
|
|
end
|
||
|
|
}
|