Skip to content

Commit

Permalink
silly troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaltr committed Jul 12, 2024
1 parent a46e2cc commit 02015c4
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chezmoi/dot_config/nvim/lua/config/lazy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ require("lazy").setup({
version = false, -- always use the latest git commit
-- version = "*", -- try installing the latest stable version for plugins that support semver
},
-- install = { colorscheme = { "catppuccin", "habamax" } },
install = { colorscheme = { "catppuccin", "habamax" } },
checker = { enabled = true }, -- automatically check for plugin updates
performance = {
rtp = {
Expand Down
30 changes: 28 additions & 2 deletions chezmoi/dot_config/nvim/lua/plugins/notetaking.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,36 @@ return {
"nullchilly/fsread.nvim",
cmd = { "FSRead", "FSToggle", "FSClear" },
},
{
"epwalsh/obsidian.nvim",
enabled = false,
version = "*", -- recommended, use latest release instead of latest commit
ft = "markdown",
-- Replace the above line with this if you only want to load obsidian.nvim for markdown files in your vault:
-- event = {
-- -- If you want to use the home shortcut '~' here you need to call 'vim.fn.expand'.
-- -- E.g. "BufReadPre " .. vim.fn.expand "~" .. "/my-vault/**.md"
-- "BufReadPre path/to/my-vault/**.md",
-- "BufNewFile path/to/my-vault/**.md",
-- },
dependencies = {
-- Required.
"nvim-lua/plenary.nvim",
},
opts = {
workspaces = {
{
name = "personal",
path = "~/Documents/personal/Notebook/",
},
},
},
},
{
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
version = "v7.0.0",
-- build = ":Neorg sync-parsers",
-- version = "v7.0.0",
build = false,
cmd = "Neorg",
ft = "norg",
keys = {
Expand Down

0 comments on commit 02015c4

Please sign in to comment.