aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/plugins.lua
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2024-07-01 01:14:11 +0200
committerpml68 <tutorialmester@gmail.com>2024-07-01 01:14:11 +0200
commita7a94e3464ff64fe7aebaf1fe47e7298ec2e12c9 (patch)
tree62bd5480d5fe06f0aaee9d55895621bf4e701712 /lua/pml68/plugins.lua
parentfix: plugins not loading when opening non-existent (new) file (diff)
downloadnvim-a7a94e3464ff64fe7aebaf1fe47e7298ec2e12c9.tar.gz
feat: remove image.nvim
Diffstat (limited to '')
-rw-r--r--lua/pml68/plugins.lua32
1 files changed, 0 insertions, 32 deletions
diff --git a/lua/pml68/plugins.lua b/lua/pml68/plugins.lua
index 462f5a2..5fbef46 100644
--- a/lua/pml68/plugins.lua
+++ b/lua/pml68/plugins.lua
@@ -10,38 +10,6 @@ local plugins = {
"christoomey/vim-tmux-navigator",
lazy = false,
},
- -- Image support
- {
- "3rd/image.nvim",
- dependencies = {
- "vhyrro/luarocks.nvim",
- priority = 1001,
- opts = {
- rocks = { "magick" },
- },
- },
- ft = { "css", "scss", "html", "svelte", "markdown" },
- config = function()
- require("image").setup({
- backend = "ueberzug",
- integrations = {
- markdown = {
- only_render_image_at_cursor = true,
- },
- neorg = {
- enabled = false,
- },
- html = {
- enabled = true,
- },
- css = {
- enabled = true,
- },
- },
- max_width_window_percentage = 90,
- })
- end
- },
-- Oil.nvim
{
"stevearc/oil.nvim",