From c20c790e67c0203f0bb455e435e3bc4bf8300db5 Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Sat, 6 Aug 2022 06:10:12 +0100
Subject: [PATCH] feat(nvim): configure lir

---
 roles/neovim/files/after/plugin/lir.lua | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/roles/neovim/files/after/plugin/lir.lua b/roles/neovim/files/after/plugin/lir.lua
index ec15d551..f59bfc9a 100644
--- a/roles/neovim/files/after/plugin/lir.lua
+++ b/roles/neovim/files/after/plugin/lir.lua
@@ -10,7 +10,7 @@ local mark_actions = require "lir.mark.actions"
 lir.setup {
   hide_cursor = true,
   show_hidden_files = true,
-  -- devicons_enable = true,
+  devicons_enable = true,
 
   mappings = {
     ["l"] = actions.edit,
@@ -61,3 +61,7 @@ lir.setup {
     vim.api.nvim_echo({ { vim.fn.expand "%:p", "Normal" } }, false, {})
   end,
 }
+
+require("lir.git_status").setup {
+  show_ignored = false,
+}