chore(nvim): add hologram plugin

This commit is contained in:
Stefan Imhoff
2022-09-28 18:26:58 +02:00
parent 0aa35bdf95
commit 4e966190c9
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
-- Hologram https://github.com/edluffy/hologram.nvim
local status, hologram = pcall(require, "hologram")
if not status then
return
end
hologram.setup({
auto_display = true,
})

View File

@@ -152,6 +152,7 @@ return packer.startup(function(use)
use("rhysd/vim-grammarous") -- A powerful grammar checker for Vim using LanguageTool
use("mechatroner/rainbow_csv") -- Rainbow CSV
use("dbeniamine/cheat.sh-vim") -- Cheat.sh
use("edluffy/hologram.nvim") -- Terminal image viewer
-- Custom Text Objects
use("christoomey/vim-titlecase")