mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
25 lines
653 B
Lua
25 lines
653 B
Lua
-- Obsidian
|
|
-- https://github.com/epwalsh/obsidian.nvim
|
|
return {
|
|
"epwalsh/obsidian.nvim",
|
|
lazy = true,
|
|
event = {
|
|
"BufReadPre " .. vim.fn.expand("~") .. "/Library/Mobile Documents/iCloud~md~obsidian/Documents/Zettelkasten/**.md",
|
|
},
|
|
dependencies = {
|
|
-- required
|
|
"nvim-lua/plenary.nvim",
|
|
-- optional
|
|
"hrsh7th/nvim-cmp",
|
|
"nvim-telescope/telescope.nvim",
|
|
"ibhagwan/fzf-lua",
|
|
"junegunn/fzf",
|
|
"junegunn/fzf.vim",
|
|
"godlygeek/tabular",
|
|
"preservim/vim-markdown",
|
|
},
|
|
opts = {
|
|
dir = "~/Library/Mobile Documents/iCloud~md~obsidian/Documents/Zettelkasten", -- no need to call 'vim.fn.expand' here
|
|
},
|
|
}
|