From fb3482278f8f8e04ca38cf6beab718494d60f10c Mon Sep 17 00:00:00 2001 From: Scott Carroll Date: Sat, 21 Mar 2026 10:28:59 +0000 Subject: [PATCH] Add blinds to nvim --- nvim/.config/nvim/lua/plugins/blinds.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nvim/.config/nvim/lua/plugins/blinds.lua diff --git a/nvim/.config/nvim/lua/plugins/blinds.lua b/nvim/.config/nvim/lua/plugins/blinds.lua new file mode 100644 index 0000000..04a8e0c --- /dev/null +++ b/nvim/.config/nvim/lua/plugins/blinds.lua @@ -0,0 +1,13 @@ +return { + -- https://github.com/jceb/blinds.nvim + "jceb/blinds.nvim", + config = true, + opts = { + -- background color + guibg = "#333333", + -- Limit blinds to certain file types, "*" matches all file types. + ft = { "*" }, + -- Exclude certain file types from blinds. + excluded = { }, + } +}