add nix/and fix nvim notify

This commit is contained in:
Daylin Morgan 2022-11-14 11:48:35 -06:00
parent eb3a1f6cc2
commit 08c9994d88
2 changed files with 9 additions and 2 deletions

View File

@ -4,8 +4,10 @@ local config = {
-- This function is run last and is a good place to configuring
-- augroups/autocommands and custom filetypes also this just pure lua so
-- anything that doesn't fit in the normal config locations above can go here
--polish = function()
--end,
polish = function()
-- todo: convert to lua
vim.cmd('cnoremap sudow w !sudo tee % >/dev/null')
end,
}
return config

View File

@ -0,0 +1,5 @@
return function(config)
-- for compatability with nvim-transparent
config.background_color = "#000000"
return config
end