fix(editorconfig): remove editorconfig as it's integrated in NeoVim now

also move open-browser as a dependency of markdown-preview
This commit is contained in:
Jiří Štefka 2023-09-30 02:22:37 +02:00
parent 8113956657
commit 96ff1d7933
Signed by: jiriks74
GPG Key ID: 1D5E30D3DB2264DE

@ -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,
},