diff --git a/init.lua b/init.lua index 4bd910d..ebf3963 100644 --- a/init.lua +++ b/init.lua @@ -10,6 +10,7 @@ local config = { -- Configure AstroNvim updates updater = { remote = "origin", -- remote to use + -- channel = "nightly", -- "stable" or "nightly" channel = "nightly", -- "stable" or "nightly" version = "latest", -- "latest", tag name, or regex search like "v1.*" to only do updates before v2 (STABLE ONLY) branch = "nightly", -- branch name (NIGHTLY ONLY) @@ -406,21 +407,9 @@ local config = { config = require "plugins.configs.lspkind", }, - -- Editorconfig - { - "editorconfig/editorconfig-vim", - event = "User AstroFile", - }, - -- You can also add new plugins here as well: -- Add plugins, the lazy syntax - -- Plugins for other plugins - { - "tyru/open-browser.vim", - cmd = { "OpenBrowser", "OpenBrowserSearch", "OpenBrowserSmartSearch" }, - }, - --Social { "jiriks74/presence.nvim", @@ -583,6 +572,7 @@ local config = { }, { "iamcco/markdown-preview.nvim", + requires = { "tyru/open-browser.vim" }, event = "BufEnter *.md", config = function() vim.fn["mkdp#util#install"]() end, },