From df18b44c4bcbc3b24536f55644bc5d2536dd56b6 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 9 Jan 2025 13:06:49 -0600 Subject: [PATCH] refactor(hm/price): make neovide default text/plain application --- users/price/conf/nvim/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/users/price/conf/nvim/default.nix b/users/price/conf/nvim/default.nix index 1d224ab8..6c108ccf 100644 --- a/users/price/conf/nvim/default.nix +++ b/users/price/conf/nvim/default.nix @@ -36,4 +36,7 @@ bun ]; }; + xdg.mimeApps.defaultApplications = { + "text/plain" = [ "neovide.desktop" ]; + }; }