I’ve talked about few plugins I use if you’re interested: https://www-gem.codeberg.page/ I’m lacking motivation to write so this list is far from complete but maybe you’ll find some inspiration.
www-gem
A space biologist by training and a (Arch)Linux user by passion #ArchLinux #Linux #KISS #FOSS #terminal, #python https://www-gem.codeberg.page/
- 4 Posts
- 21 Comments
No worries, the confusion is easy to make. Looks like nobody here is using this plugin, or maybe this was a dumb question.
I know it’s confusing. This is a neovim plugin called obsidian, not the obsidian software. That’s why I put a link to it but I may edit my post to make it more clear. Thanks.
I’ve looked at the pull requests again and realized that this feature was already requested in June 2024.
In the absence of response to this ticket, the hope to see it implemented is pretty low though :( Not sure how I can fully benefit of this plugin then…
- www-gem@lemmy.mlto3DPrinting@lemmy.world•Reviewers without Conflict of Interest?English4·6 months ago
Reviews are good to learn about each printer features if you don’t like to read. Then, just do a check list and see which machine has the best specs for your needs. At least that’s my approach when buying printers because at the end of the day they’re all extremely similar and capable all things considered. A consideration that may only matter to few is the proprietary/open-source aspect.
Reviews will only emphasize bells and whistles you may not even need. Everyone will comment on their personal experience which will vary with the machine they have and the gap can be huge for the same machine because it’s a piece of hardware/software and some may have flaws despite all the quality checks.
- www-gem@lemmy.mltoFree and Open Source Software@beehaw.org•Suggest a Replacement Music Player2·10 months ago
Looking for something else I ended up on MusicPlayerPlus which may check lots of the boxes, especially those not covered by ncmpcpp which is my favorite mpd frontend.
https://rybczak.net/ncmpcpp/ https://github.com/doctorfree/MusicPlayerPlus
- www-gem@lemmy.mltoFree and Open Source Software@beehaw.org•Youtube has fully blocked Invidious1·10 months ago
It’s been a long time since I checked the config options but yt-fzf only supports mpv as media player I think.
- www-gem@lemmy.mltoFree and Open Source Software@beehaw.org•Youtube has fully blocked Invidious5·10 months ago
Yt-fzf is still an option if you’re interested.
- www-gem@lemmy.mltoFree and Open Source Software@beehaw.org•Which YouTube frontend App9·11 months ago
If you’re looking for an in-browser alternative I’d highly recommend you take a look at the LibRedirect extension for Firefox and Chromium. It’ll automatically redirect any youtube URL to your preferred alternative between Invidious, Piped, PokeTube, CloudTube, Tubo, FreeTube, or Yattee.
If you’re looking for an external app and like using a Linux terminal then ytfzf may be a good choice. I’ve briefly talked about it here. It will even allow you to search on Youtube (through invidious), Peertube, and Odysee if you so desire.
If looking for a phone app, I personally like NewPipe.
Great idea. Thanks for sharing. Great choice of laptop BTW ;)
If you’re looking for an in-browser alternative I’d highly recommend you take a look at the LibRedirect extension for Firefox and Chromium. It’ll automatically redirect any youtube URL to your preferred alternative between Invidious, Piped, PokeTube, CloudTube, Tubo, FreeTube, or Yattee.
If you’re looking for an external app and like using your terminal then ytfzf may be a good choice. I’ve briefly talked about it here. It will even allow you to search on Youtube (through invidious), Peertube, and Odysee if you so desire.
- www-gem@lemmy.mltoNeovim@programming.dev•[solved] How to get rid of those stupid background and font color?1·1 year ago
Ok. If I have interpreted your post correctly you want to not use the default colors for values not defined in your theme (i.e. defaulting to transparency).
I see two options to combine to your theme:
- replacing any default colors using the command above
- using the transparency plugin so any colors not defined in your theme will be transparent
- www-gem@lemmy.mltoNeovim@programming.dev•[solved] How to get rid of those stupid background and font color?1·1 year ago
deleted by creator
- www-gem@lemmy.mltoNeovim@programming.dev•[solved] How to get rid of those stupid background and font color?1·1 year ago
deleted by creator
- www-gem@lemmy.mltoNeovim@programming.dev•[solved] How to get rid of those stupid background and font color?1·1 year ago
deleted by creator
- www-gem@lemmy.mltoNeovim@programming.dev•[solved] How to get rid of those stupid background and font color?1·1 year ago
deleted by creator
- www-gem@lemmy.mltoNeovim@programming.dev•[solved] How to get rid of those stupid background and font color?1·1 year ago
deleted by creator
- www-gem@lemmy.mltoNeovim@programming.dev•[solved] How to get rid of those stupid background and font color?1·1 year ago
I have treesitter as well and didn’t do anything specific before adding these lines to my config. If you’re looking to change “everything” without tweaking each highlight parameter individually you may be interested in this plugin.
- www-gem@lemmy.mltoNeovim@programming.dev•[solved] How to get rid of those stupid background and font color?4·1 year ago
This is my neovim visual config:
-- General colors vim.api.nvim_set_hl( 0, "Normal", { bg = "none" } ) vim.api.nvim_set_hl( 0, "NormalFloat", { bg = "none" } ) vim.api.nvim_set_hl( 0, "NormalNC", { bg = "none" } ) vim.api.nvim_set_hl( 0, "LineNr", { bg = "none" } ) vim.api.nvim_set_hl( 0, "SignColumn", { bg = "none" } ) vim.api.nvim_set_hl( 0, "Folded", { bg = "#4b4b4b" } ) vim.api.nvim_set_hl( 0, "FoldColumn", { bg = "none" } ) vim.api.nvim_set_hl( 0, "Visual", { fg = "#000000", bg = "#de935f" } ) vim.api.nvim_set_hl( 0, "NotifyBackground", { bg = "#000000" } )``` -- Spell checking vim.api.nvim_set_hl( 0, "SpellLocal", { fg = default } ) vim.api.nvim_set_hl( 0, "SpellRare", { fg = default } ) vim.api.nvim_set_hl( 0, "SpellCap", { fg = "#de935f", italic=true } ) vim.api.nvim_set_hl( 0, "SpellBad", { fg = "#ff0000", italic=true } ) -- Markdown vim.api.nvim_set_hl( 0, "htmlBold", { bold=true } ) vim.api.nvim_set_hl( 0, "htmlItalic", { italic=true } ) vim.api.nvim_set_hl( 0, "htmlStrike", { fg = "#ff0000", strikethrough=true } )
vim.api.nvim_set_hl( 0, “Normal”, { bg = “none” } ) is probably what would work for you.
Very nice! That’s a pretty big boy ;)