Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nerdfonts are broken in Alacritty #471

Open
0x4a61636f62 opened this issue Oct 12, 2024 · 0 comments
Open

Nerdfonts are broken in Alacritty #471

0x4a61636f62 opened this issue Oct 12, 2024 · 0 comments

Comments

@0x4a61636f62
Copy link

0x4a61636f62 commented Oct 12, 2024

I am using JetBrainsMono Nerd Font, which appears to be broken in Alacritty:

screenshot-20241012-070943

[font.normal]
family = "JetBrainsMono Nerd Font"
style = "Medium"
return {
  lazy = true,
  cmd = "ChatGPT",
  "jackMort/ChatGPT.nvim",
  config = function()
    require("chatgpt").setup({
      api_key_cmd = "op read op://redacted/credential --no-newline",
      -- this config assumes you have OPENAI_API_KEY environment variable set
      openai_params = {
        -- NOTE: model can be a function returning the model name
        -- this is useful if you want to change the model on the fly
        -- using commands
        -- Example:
        -- model = function()
        --     if some_condition() then
        --         return "gpt-4-1106-preview"
        --     else
        --         return "gpt-3.5-turbo"
        --     end
        -- end,
        model = "gpt-4-1106-preview",
        frequency_penalty = 0,
        presence_penalty = 0,
        max_tokens = 4095,
        temperature = 0.2,
        top_p = 0.1,
        n = 1,
      },
    })
  end,
  dependencies = {
    "MunifTanjim/nui.nvim",
    "nvim-lua/plenary.nvim",
    "nvim-telescope/telescope.nvim",
  },
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant