require('my/plugins') if vim.g.started_by_firenvim then vim.g.firenvim_config = { localSettings = { [".*"] = { priority = 0, takeover = 'never', }, ['/(issues|pull|merge_requests)/'] = { priority = 1, takeover = 'once' }, ['https://bugs\\.gentoo\\.org/'] = { priority = 1, takeover = 'once' } } } vim.o.wrap = true vim.o.guifont = 'Source_Code_Pro:h10' vim.o.textwidth = 0 vim.o.colorcolumn = '0' local FV_fileprefix = vim.env['XDG_RUNTIME_DIR'] .. '/firenvim/' vim.api.nvim_create_augroup('firenvim', { clear = true }) vim.api.nvim_create_autocmd( { 'BufEnter' }, { group = 'firenvim', pattern = { FV_fileprefix .. 'schlomp\\.space_*', FV_fileprefix .. 'codeberg\\.org_*', FV_fileprefix .. 'gitlab\\.com_*', FV_fileprefix .. 'github\\.com_*', FV_fileprefix .. 'very\\.tastytea\\.de_*', FV_fileprefix .. 'bookwyrm\\.social_*', FV_fileprefix .. 'openlibrary\\.org_*', FV_fileprefix .. 'bugs\\.gentoo\\.org_*', }, command = [[set filetype=markdown | set tw=0 cc=0]] }) end