nvim/lua/plugins/notes.lua
2024-11-12 08:08:18 -05:00

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
}