From 1bab258211e908f63345029ba069e5a99fce669c Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Tue, 12 Nov 2024 09:21:29 -0500 Subject: [PATCH] neovim: add outline --- modules/home/all/neovim/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/home/all/neovim/default.nix b/modules/home/all/neovim/default.nix index 6da6d2a..e527633 100644 --- a/modules/home/all/neovim/default.nix +++ b/modules/home/all/neovim/default.nix @@ -1,4 +1,4 @@ -{ flake, ... }: +{ flake, pkgs, ... }: let inherit (flake) inputs; @@ -34,6 +34,10 @@ in mapleader = " "; }; + extraPlugins = [ + pkgs.vimPlugins.outline-nvim + ]; + plugins = { # UI web-devicons.enable = true;