mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
chore(nvim): add hologram plugin
This commit is contained in:
9
nvim/after/plugin/hologram.lua
Normal file
9
nvim/after/plugin/hologram.lua
Normal 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,
|
||||||
|
})
|
||||||
@@ -152,6 +152,7 @@ return packer.startup(function(use)
|
|||||||
use("rhysd/vim-grammarous") -- A powerful grammar checker for Vim using LanguageTool
|
use("rhysd/vim-grammarous") -- A powerful grammar checker for Vim using LanguageTool
|
||||||
use("mechatroner/rainbow_csv") -- Rainbow CSV
|
use("mechatroner/rainbow_csv") -- Rainbow CSV
|
||||||
use("dbeniamine/cheat.sh-vim") -- Cheat.sh
|
use("dbeniamine/cheat.sh-vim") -- Cheat.sh
|
||||||
|
use("edluffy/hologram.nvim") -- Terminal image viewer
|
||||||
|
|
||||||
-- Custom Text Objects
|
-- Custom Text Objects
|
||||||
use("christoomey/vim-titlecase")
|
use("christoomey/vim-titlecase")
|
||||||
|
|||||||
Reference in New Issue
Block a user