mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-14 14:02:29 +01:00
14 lines
304 B
Lua
14 lines
304 B
Lua
local blacklistedSites = { ".*twitch\\.tv.*", ".*twitter\\.com.*" }
|
|
|
|
local localSettings = {
|
|
[".*"] = {
|
|
cmdline = "neovim",
|
|
},
|
|
}
|
|
for _, site in pairs(blacklistedSites) do
|
|
localSettings[site] = { takeover = "never" }
|
|
end
|
|
|
|
vim.g.firenvim_config = {
|
|
localSettings = localSettings,
|
|
}
|