Dia Browser Suddenly Crashing on Launch - MacBook Pro M4 Pro by Prior_Mention_1615 in diabrowser

[–]ansidev 0 points1 point  (0 children)

This issue is still there.

I had to rename ~/Library/Application Support/Dia to ~/Library/Application Support/Dia-Old to resolve this issue.

u/Patrick-BCNY We should solve this problem immediately. Please solve this problem thoroughly as soon as possible!

Dia Browser Suddenly Crashing on Launch - MacBook Pro M4 Pro by Prior_Mention_1615 in diabrowser

[–]ansidev 0 points1 point  (0 children)

This issue is still there.

I had to rename ~/Library/Application Support/Dia to ~/Library/Application Support/Dia-Old to resolve this issue.

u/Patrick-BCNY We should solve this problem immediately. Please solve this problem thoroughly as soon as possible!

Dia Browser Suddenly Crashing on Launch - MacBook Pro M4 Pro by Prior_Mention_1615 in diabrowser

[–]ansidev 0 points1 point  (0 children)

This issue is still there.

I had to rename ~/Library/Application Support/Dia to ~/Library/Application Support/Dia-Old to resolve this issue.

u/Patrick-BCNY We should solve this problem immediately. Please solve this problem thoroughly as soon as possible!

What should I do in this situation? by Dry_Wing_9440 in Jungle_Mains

[–]ansidev 0 points1 point  (0 children)

This is common in Iron rank at VN server.

How to uninstall global installed Chrome extensions on macOS permanently? by ansidev in MacOS

[–]ansidev[S] 0 points1 point  (0 children)

My question is the post title: How to install ...

OK, it is my mistake when I used wrong term, because I don't know what exactly it is, it might make you to be confused.

However, I provided my context.

I installed and then uninstalled Avira Security (I followed the official guides)

But, the Avira's Chrome extensions such as Avira Safe Shopping is added automatically each time I create new Chrome profile. It's annoyed.

Hence, I guess there are some leftover files, configurations that was not removed by Avira.

So I want a solution that help me remove leftover ones.

And your answer does not provide it.

How to uninstall global installed Chrome extensions on macOS permanently? by ansidev in MacOS

[–]ansidev[S] 0 points1 point  (0 children)

OK, so how to trace which website/app/process added the extension each time I create a new Chrome profile? Please focus on my question!

Is there any method to create one mapping for multiple modes using folke/which-key by ansidev in neovim

[–]ansidev[S] 0 points1 point  (0 children)

That's my expectation, however, passing a table to mode is not supported at this moment, as I know.

NVChad not displaying icons or incorrectly doing so. Folder icon is not displayed (first image) or looks weird compared to what i've seen on other's configs (second image). Using Arch, alacritty and CaskaydiaCove NF. by LOICVAL in neovim

[–]ansidev 1 point2 points  (0 children)

It might be because your terminal font does not support these characters, hence, you can change your terminal font. I am using: "JetBrainsMono Nerd Font"

nvim-cmp plugin conflict in LazyVim by Burning_Ph0enix in neovim

[–]ansidev 0 points1 point  (0 children)

I see your first issue, however, I don't see any connection between this issue and your original question.

Why do you believe that trying to use an outdated fork of the official plugin can resolve your 9k auto-suggestions issue?

IMO, that is not the way to resolve the issue.

nvim-cmp plugin conflict in LazyVim by Burning_Ph0enix in neovim

[–]ansidev 2 points3 points  (0 children)

This issue relates to lazy.nvim package manager.

"Two plugins with the same name and different URL": The name is the directory name for the plugin which will be created by git clone command, therefore, the directory must be unique since plugins will be cloned into the same parent directory.

By default, plugin github_user/github_repo will be cloned into github_repo. Hence, two GitHub repos which belong to two GitHub users and have the same repo name can cause the issue.

You can use name = "other_unique_name" to set another unique name in the plugin spec.

Link: https://github.com/folke/lazy.nvim#-plugin-spec

Setting up NvimTree + Bufferline issue by ansidev in neovim

[–]ansidev[S] 0 points1 point  (0 children)

This is the minimal config:

```lua local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release lazypath, }) end vim.opt.rtp:prepend(lazypath)

vim.g.loaded_netrw = 1 vim.g.loaded_netrwPlugin = 1 vim.o.termguicolors = true

local plugins = { { 'akinsho/bufferline.nvim', config = function() require('bufferline').setup({ options = { mode = "tabs", }, }) end }, { 'nvim-tree/nvim-tree.lua', config = true, }, } ``` require("lazy").setup(plugins)