From f9287454976cbdf50f3e2f8fd1a5a280dab5c9f5 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Fri, 17 Mar 2023 22:44:19 +0530 Subject: [PATCH] add intent-guides --- home/nvim.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/home/nvim.nix b/home/nvim.nix index decef80..1c915ab 100644 --- a/home/nvim.nix +++ b/home/nvim.nix @@ -63,6 +63,18 @@ require('gitsigns').setup() ''; } + { + plugin = indent-blankline-nvim; + type = "lua"; + config = '' + vim.opt.list = true + vim.opt.listchars:append "space:⋅" + vim.opt.listchars:append "eol:↴" + require("indent_blankline").setup { + show_end_of_line = true + } + ''; + } { plugin = lualine-nvim; type = "lua";