mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-29 14:41:48 +00:00
* feat(nvim): clean config, work in progress * feat: refactored plugins and configs * feat: stylua config, ufo, lsp refactor, cleanup * feat: renamed nvim to nvim-lazy, added alias * feat: renamed nvim-clean to be nvim, updated alias
20 lines
410 B
Lua
20 lines
410 B
Lua
return {
|
|
'epwalsh/obsidian.nvim',
|
|
version = '*', -- recommended, use latest release instead of latest commit
|
|
lazy = true,
|
|
ft = 'markdown',
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim',
|
|
},
|
|
config = function()
|
|
require('obsidian').setup {
|
|
workspaces = {
|
|
{
|
|
name = 'Notes',
|
|
path = vim.fn.expand '$HOME/Code/ivuorinen/obsidian',
|
|
},
|
|
},
|
|
}
|
|
end,
|
|
}
|