diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json index bd198e07..c75f2760 100644 --- a/.config/nvim/lazy-lock.json +++ b/.config/nvim/lazy-lock.json @@ -72,7 +72,6 @@ "nvim-treesitter-textobjects": { "branch": "master", "commit": "ad8f0a472148c3e0ae9851e26a722ee4e29b1595" }, "nvim-ts-autotag": { "branch": "main", "commit": "1cca23c9da708047922d3895a71032bc0449c52d" }, "nvim-ts-context-commentstring": { "branch": "main", "commit": "9c74db656c3d0b1c4392fc89a016b1910539e7c0" }, - "obsidian-bridge.nvim": { "branch": "main", "commit": "b5bc14ae57f5df3f0a6a67a43850ee16a90e956f" }, "obsidian.nvim": { "branch": "main", "commit": "ae1f76a75c7ce36866e1d9342a8f6f5b9c2caf9b" }, "oil.nvim": { "branch": "master", "commit": "52cc8a1fb35ea6ce1df536143add7ce7215c63c0" }, "outline.nvim": { "branch": "main", "commit": "6c44527837ff7ac1cd054dc365a721e881020a2e" }, diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua index d73bfa10..b1a44047 100644 --- a/.config/nvim/lua/config/lazy.lua +++ b/.config/nvim/lua/config/lazy.lua @@ -21,6 +21,9 @@ require("lazy").setup({ -- import/override with your plugins { import = "plugins" }, }, + dev = { + path = "~/dev/plugins", + }, defaults = { -- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup. -- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default. @@ -30,7 +33,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 = { "tokyonight", "habamax" } }, + install = {}, checker = { enabled = true, -- check for plugin updates periodically notify = false, -- notify on update diff --git a/.config/nvim/lua/plugins/obsidian-bridge.lua b/.config/nvim/lua/plugins/obsidian-bridge.lua index 3004cf4f..da3efbeb 100644 --- a/.config/nvim/lua/plugins/obsidian-bridge.lua +++ b/.config/nvim/lua/plugins/obsidian-bridge.lua @@ -5,6 +5,7 @@ return { "oflisback/obsidian-bridge.nvim", -- disable for now because paths aren't working enabled = true, + dev = true, -- config = function() -- require("obsidian-bridge").setup(opts) -- end,