From 96ff1d79338b64fa63e683d897ec0cfacae704f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0tefka?= Date: Sat, 30 Sep 2023 02:22:37 +0200 Subject: [PATCH] fix(editorconfig): remove editorconfig as it's integrated in NeoVim now also move open-browser as a dependency of markdown-preview --- init.lua | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) 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, },