Compare commits

..

2 commits

Author SHA1 Message Date
f217b7af5e
feat(nvim): add copilot 2025-01-07 09:32:13 +01:00
8e45e1e0a0
feat(nvim): add firenvim 2025-01-07 09:32:13 +01:00

View file

@ -2,6 +2,19 @@ if vim.g.started_by_firenvim ~= true then
return
end
vim.g.firenvim_config = {
globalSettings = { alt = "all" },
localSettings = {
[".*"] = {
cmdline = "neovim",
content = "text",
priority = 0,
selector = "textarea",
takeover = "never"
}
}
}
vim.api.nvim_create_autocmd('UIEnter', {
callback = function()
local client = vim.api.nvim_get_chan_info(vim.v.event.chan).client