aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2024-03-31 19:01:38 +0200
committerpml68 <tutorialmester@gmail.com>2024-03-31 19:01:38 +0200
commitabc823c72d9d5508911150747b4b61dada311a4c (patch)
treea119efbef70d03f83d770005a632183ca1ed2dc4 /lua/pml68
parentfeat: set lazy loading for flutter-tools plugin (diff)
downloadnvim-abc823c72d9d5508911150747b4b61dada311a4c.tar.gz
feat: add indent-blankline plugin
Diffstat (limited to 'lua/pml68')
-rw-r--r--lua/pml68/plugins.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/pml68/plugins.lua b/lua/pml68/plugins.lua
index 7a72471..d2d7145 100644
--- a/lua/pml68/plugins.lua
+++ b/lua/pml68/plugins.lua
@@ -1,4 +1,12 @@
local plugins = {
+ -- Indent Blankline
+ {
+ "lukas-reineke/indent-blankline.nvim",
+ main = "ibl",
+ config = function()
+ require("ibl").setup()
+ end
+ },
-- CMP
{
"hrsh7th/nvim-cmp",