Skip to content

Commit

Permalink
Adds Obsidian plugin to neovim.
Browse files Browse the repository at this point in the history
  • Loading branch information
jevandezande committed Dec 30, 2023
1 parent 5d87d09 commit ecbc824
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion config/nvim/lua/custom/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,25 @@ local plugins = {
table.insert(M.sources, {name = "crates"})
return M
end,
}
},
{
"epwalsh/obsidian.nvim",
requires = {
"nvim-lua/plenary.nvim",
},
config = function()
require("obsidian").setup({
workspaces = {
{
name = "work",
path = "~/work/Obsidian/",
},
},
})
end,
},
{
"lervag/vimtex",
},
}
return plugins

0 comments on commit ecbc824

Please sign in to comment.