change path to obsidian vault
This commit is contained in:
parent
d549e665eb
commit
58b72dba8b
|
|
@ -5,9 +5,9 @@ return {
|
||||||
event = {
|
event = {
|
||||||
-- Load obsidian.nvim only when opening files in the vault
|
-- Load obsidian.nvim only when opening files in the vault
|
||||||
'BufReadPre '
|
'BufReadPre '
|
||||||
.. vim.fn.expand '~/AdisObsidianVault'
|
.. vim.fn.expand '~/AdisObsidianSyncVault'
|
||||||
.. '/*.md',
|
.. '/*.md',
|
||||||
'BufNewFile ' .. vim.fn.expand '~/AdisObsidianVault' .. '/*.md',
|
'BufNewFile ' .. vim.fn.expand '~/AdisObsidianSyncVault' .. '/*.md',
|
||||||
},
|
},
|
||||||
|
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
|
@ -25,18 +25,18 @@ return {
|
||||||
workspaces = {
|
workspaces = {
|
||||||
{
|
{
|
||||||
name = 'work',
|
name = 'work',
|
||||||
path = '~/AdisObsidianVault', -- Define your vault path
|
path = '~/AdisObsidianSyncVault', -- Define your vault path
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
templates = {
|
templates = {
|
||||||
folder = '~/AdisObsidianVault/Templates',
|
folder = '~/AdisObsidianSyncVault/Templates',
|
||||||
date_format = '%d.%m.%Y',
|
date_format = '%d.%m.%Y',
|
||||||
time_format = '%H:%M',
|
time_format = '%H:%M',
|
||||||
},
|
},
|
||||||
-- Optional, completion of wiki links, local markdown links, and tags using nvim-cmp.
|
-- Optional, completion of wiki links, local markdown links, and tags using nvim-cmp.
|
||||||
completion = {
|
completion = {
|
||||||
-- Set to false to disable completion.
|
-- Set to false to disable completion.
|
||||||
nvim_cmp = true,
|
nvim_cmp = false,
|
||||||
-- Trigger completion at 2 chars.
|
-- Trigger completion at 2 chars.
|
||||||
min_chars = 2,
|
min_chars = 2,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue