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