mirror of
https://github.com/Ascyii/nvim.git
synced 2026-01-01 04:04:24 -05:00
Full refactor of codebase and usage of lazyvim opts setting. Also split code in custom plugins
This commit is contained in:
26
lua/plugins/misc.lua
Normal file
26
lua/plugins/misc.lua
Normal file
@@ -0,0 +1,26 @@
|
||||
local base_zet = "~/synced/brainstore/zettelkasten"
|
||||
|
||||
return {
|
||||
{ "ThePrimeagen/harpoon" },
|
||||
{ "akinsho/toggleterm.nvim", config = true },
|
||||
{
|
||||
'Ascyii/telekasten.nvim',
|
||||
dev = true,
|
||||
opts = {
|
||||
home = vim.fn.expand(base_zet),
|
||||
dailies = vim.fn.expand(base_zet .. "/daily"),
|
||||
|
||||
image_subdir = vim.fn.expand(base_zet .. "/media"),
|
||||
weeklies = vim.fn.expand(base_zet .. "/weekly"),
|
||||
templates = vim.fn.expand(base_zet .. "/templates"),
|
||||
template_new_note = vim.fn.expand(base_zet .. "/templates/note.md"),
|
||||
template_new_daily = vim.fn.expand(base_zet .. "/templates/daily.md"),
|
||||
template_new_weekly = vim.fn.expand(base_zet .. "/templates/weekly.md"),
|
||||
|
||||
filename_format = "%Y%m%d%H%M-%title%",
|
||||
new_note_filename = "uuid-title",
|
||||
uuid_type = "%Y%m%d%H%M",
|
||||
uuid_separator = "-",
|
||||
}
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user