Install lightspeed and indent-blankline plugins

This commit is contained in:
2021-11-15 18:00:28 +03:00
parent f8419ac36c
commit 5568cb56a1

View File

@@ -59,4 +59,23 @@ return require("packer").startup(function(use)
-- Highlight colors in editor
use({ "norcalli/nvim-colorizer.lua" })
-- Show indent lines
use({
"lukas-reineke/indent-blankline.nvim",
config = function ()
require("indent_blankline").setup({
char = "|",
buftype_exclude = { "terminal" }
})
end
})
-- Fast movement
use({
"ggandor/lightspeed.nvim",
config = function ()
require("lightspeed").setup()
end
})
end)