From 3097e483779259bcd19123709c0a1231ac580db2 Mon Sep 17 00:00:00 2001 From: Sebastian Estrella <2049686+sestrella@users.noreply.github.com> Date: Thu, 19 Sep 2024 00:05:33 -0500 Subject: [PATCH] [neovim] Install oil-nvim --- home/neovim/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/home/neovim/default.nix b/home/neovim/default.nix index 9beb431..175d0e4 100644 --- a/home/neovim/default.nix +++ b/home/neovim/default.nix @@ -32,6 +32,14 @@ ./plugins/treesitter ./plugins/which-key ./plugins/whitespace + ] ++ [ + { + plugin = pkgs.vimPlugins.oil-nvim; + config = '' + require("oil").setup() + ''; + type = "lua"; + } ]; viAlias = true; vimAlias = true;