chore: fix error
Some checks failed
quality / changes (push) Successful in 1s
quality / Nix Format Check (push) Successful in 5s
quality / Flake Check (push) Failing after 9s
quality / Deploy netty (push) Has been skipped

This commit is contained in:
Harivansh Rathi 2026-04-19 14:39:23 -04:00
parent 987df46386
commit 2bc5cc52df

View file

@ -1,6 +1,18 @@
vim.g.mapleader = " "
vim.g.maplocalleader = ","
-- Silence the "defaults.lua: Did not detect DSR response from terminal"
vim.opt.background = "dark"
do
local orig_notify = vim.notify
vim.notify = function(msg, level, opts)
if type(msg) == "string" and msg:find("Did not detect DSR response", 1, true) then
return
end
return orig_notify(msg, level, opts)
end
end
local home = os.getenv "HOME" or ""
local local_bin = home .. "/.local/bin"
if not (os.getenv "PATH" or ""):find(local_bin, 1, true) then