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";