From 6b8a4d39db03594e6fb12e19d739abdc600e0419 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Wed, 15 Dec 2021 15:26:15 -0800 Subject: [PATCH] Disable dark-notify on non-mac --- neovim/lua/plugins.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index d27c1e6..b726153 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -158,6 +158,7 @@ return require("packer").startup(function(use) -- On Mac, update colors when dark mode changes use({ "cormacrelf/dark-notify", + disable = not vim.g.is_mac, -- Download latest release on install run = "curl -s https://api.github.com/repos/cormacrelf/dark-notify/releases/latest | jq '.assets[].browser_download_url' | xargs curl -Ls | tar xz -C ~/.local/bin/", -- luacheck: no max line length config = config_dark_notify,