add nix/and fix nvim notify
This commit is contained in:
parent
eb3a1f6cc2
commit
08c9994d88
2 changed files with 9 additions and 2 deletions
|
@ -4,8 +4,10 @@ local config = {
|
||||||
-- This function is run last and is a good place to configuring
|
-- This function is run last and is a good place to configuring
|
||||||
-- augroups/autocommands and custom filetypes also this just pure lua so
|
-- 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
|
-- anything that doesn't fit in the normal config locations above can go here
|
||||||
--polish = function()
|
polish = function()
|
||||||
--end,
|
-- todo: convert to lua
|
||||||
|
vim.cmd('cnoremap sudow w !sudo tee % >/dev/null')
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
return function(config)
|
||||||
|
-- for compatability with nvim-transparent
|
||||||
|
config.background_color = "#000000"
|
||||||
|
return config
|
||||||
|
end
|
Loading…
Reference in a new issue