diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index 2703518..c55b936 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -12,6 +12,7 @@ "crates.nvim": { "branch": "main", "commit": "1c924d5a9ea3496c4e1a02d0d51388ba809f8468" }, "friendly-snippets": { "branch": "main", "commit": "00ba9dd3df89509f95437b8d595553707c46d5ea" }, "gitsigns.nvim": { "branch": "main", "commit": "1ef74b546732f185d0f806860fa5404df7614f28" }, + "image.nvim": { "branch": "master", "commit": "f95cb9cca3a05033d5e94cfd760a48ec9a7d4719" }, "indent-blankline.nvim": { "branch": "master", "commit": "18603eb949eba08300799f64027af11ef922283f" }, "lazy.nvim": { "branch": "main", "commit": "460e1cd8f24e364d54543a4b0e83f6f4ec1f65fb" }, "mason-tool-installer.nvim": { "branch": "main", "commit": "c5e07b8ff54187716334d585db34282e46fa2932" }, diff --git a/nvim/lua/plugins/init.lua b/nvim/lua/plugins/init.lua index b444974..6280c02 100644 --- a/nvim/lua/plugins/init.lua +++ b/nvim/lua/plugins/init.lua @@ -27,8 +27,19 @@ return { "nvim-tree/nvim-tree.lua", opts = require "configs.nvim-tree", }, - { - "hrsh7th/nvim-cmp", - opts = require("configs.cmp"), - }, + { + "hrsh7th/nvim-cmp", + opts = require "configs.cmp", + }, + { + "3rd/image.nvim", + config = function() + require("image").setup { + backend = "ueberzug", + } + package.path = package.path .. ";" .. vim.fn.expand "$HOME" .. "/.luarocks/share/lua/5.1/?/init.lua" + package.path = package.path .. ";" .. vim.fn.expand "$HOME" .. "/.luarocks/share/lua/5.1/?.lua" + end, + ft = { "markdown", "" }, + }, }