-
Notifications
You must be signed in to change notification settings - Fork 0
Options
Luca Fedrizzi edited this page Jan 15, 2025
·
1 revision
You have to create a new file: /.config/nvim/lua/options.lua.
This file is Git ignored and have must return specific content.
OBSIDIAN_WORKSPACES is the main reason the config file exists.
They aren't mandatory but configuring specific folders improve significantly the workflow.
local obsidian_workspaces = {
{
name = "example1",
path = "~/my-workspace1",
},
{
name = "example2",
path = "~/my-workspace2",
},
}
local M = {
OBSIDIAN_WORKSPACES = obsidian_workspaces
}
return M