Skip to content

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

OBSIDIAN_WORKSPACES is the main reason the config file exists. They aren't mandatory but configuring specific folders improve significantly the workflow.

Full example of config

local obsidian_workspaces = {
  {
    name = "example1",
    path = "~/my-workspace1",
  },
  {
    name = "example2",
    path = "~/my-workspace2",
  },
}

local M = {
  OBSIDIAN_WORKSPACES = obsidian_workspaces
}

return M

Clone this wiki locally