Skip to content

change fidget.nvim box visuals #3

Description

@mrdandelion6

make bottom right status box look better. this is the status box that says "Loading workspace" , given by fidget.nvim.

change the following:

  • make border pink
  • make background transparent
  • make main text pink
  • make other text light blue or something

currently have the following config:

        config = function()
          require('fidget').setup {
            notification = {
              window = {
                normal_hl = '',
                winblend = 0,
                border = 'rounded',
                border_hl = 'FidgetBorder',
                relative = 'win',
              },
              view = {
                stack_upwards = true,
                icon_separator = ' ',
                group_separator = '---',
                group_separator_hl = 'Comment',
              },
            },
          }

          -- change colors
          vim.api.nvim_set_hl(0, 'FidgetBorder', { fg = '#f0a4d0', bg = 'NONE' })
          vim.api.nvim_set_hl(0, 'FidgetTask', { fg = '#f0a4d0', bg = 'NONE' })
          vim.api.nvim_set_hl(0, 'FidgetTitle', { fg = '#f0a4d0', bg = 'NONE' })
        end

FidgetBorder is working but the other two aren't

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions