1
0
Fork 0

firenvim: remove leftover config

This commit is contained in:
Felipe 2023-08-06 01:02:41 -04:00
parent dc1e99084c
commit 0abe6189cd
Signed by: pitbuster
SSH key fingerprint: SHA256:HDYu2Pm4/TmSX8GBwV49UvFWr1Ljg8XlHxKeCpjJpOk

View file

@ -535,40 +535,3 @@ require("dap-go").setup()
---- web-devicons
require("nvim-web-devicons").setup()
---- firenvim
if g.started_by_firenvim == true then
vim.cmd("packadd firenvim")
g.firenvim_config = {
globalSettings = {
alt = 'all',
},
localSettings = {
['.*'] = {
selector =
'textarea:not([readonly]):not([class="read-only-cursor-text-area"]):not([class="handsontableInput"]), div[role="textbox"]',
takeover = 'never',
},
['https://github\\.com.*'] = {
priority = 1,
takeover = 'always',
}
}
}
vim.api.nvim_create_autocmd({ 'BufEnter' }, {
pattern = "github.com_*.txt",
callback = function()
vim.cmd("set filetype=markdown")
end
})
lualine.setup({
sections = {
lualine_a = { 'mode' },
lualine_b = {},
lualine_c = {},
lualine_x = { 'searchcount' },
lualine_y = { 'progress' },
lualine_z = { 'location' },
},
})
end