mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-16 06:52:10 +01:00
15 lines
300 B
Lua
15 lines
300 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
|
|
}
|
|
|