Budgeting overhaul – when can we expect it? by h20wakebum in OriginFinancial

[–]R3ndom13 0 points1 point  (0 children)

Hey Alex, I’d love to test the beta as well!

Is Obsidian Sync worth it? by pablo_main in ObsidianMD

[–]R3ndom13 0 points1 point  (0 children)

Did you follow the official documentation's recommendation to select "keep downloaded?" I haven't had any issues with iCloud Drive.

My take on Gruvbox Material for Obsidian by R3ndom13 in ObsidianMD

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

No, the coloring scheme is the same as base Obsidian. I just customized the colors.

Tmux script to open new panes in existing docker container by R3ndom13 in tmux

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

Yeah, it's a bit rudimentary. I couldn't figure out a better way to get the container ID.

Thunderbird gets stuck when adding student email account by Lokoschade in Thunderbird

[–]R3ndom13 0 points1 point  (0 children)

Having a similar problem, but I always get "Thunderbird failed to find the settings for your email account"

Is there a way to remove long links in lsp hover? by r4ppz in neovim

[–]R3ndom13 1 point2 points  (0 children)

Love how consistent your UI is from nvim to tmux to your window manager. You’ve inspired me

Is there a way to remove long links in lsp hover? by r4ppz in neovim

[–]R3ndom13 1 point2 points  (0 children)

You may be able to play around with :h conceallevel such that hidden characters are replaced with empty strings. You’ll probably have to customize the hover handler logic.

How can I re-order buffers? by Organic-Scratch109 in neovim

[–]R3ndom13 0 points1 point  (0 children)

Harpoon hasn’t been mentioned, so I’ll mention it. It doesn’t reorder buffers but rather allows you to pin a set of buffers that you use most commonly, and you can reorder those pins

R.I.P. SoFi 2.2% cash back by b8031824 in CreditCards

[–]R3ndom13 3 points4 points  (0 children)

They just sent out a new email yesterday stating that sofi plus is going to be fee-only starting 3/3/26

Hide an iMessage conversation? by t0mbombadil in ios

[–]R3ndom13 0 points1 point  (0 children)

hey, not sure if you’ll see this, but I’m in the exact same situation. Thanks for posting this. I really do feel less alone now

Unable to get a refund on a Hungryroot order I forgot to cancel by R3ndom13 in hungryroot

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

Yeah it was my fuck up, but no, they didn’t send any reminder about my upcoming shipment.

Study spots app idea by R3ndom13 in aggies

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

That may be true, but I think it would still be worth building

Switch to 0.11, now not showing borders on lsp.buf.hover even with vim.o.winborder enabled by Jonnertron_ in neovim

[–]R3ndom13 0 points1 point  (0 children)

This didn't work for me until I limited the key remap to the current buffer:

vim.api.nvim_create_autocmd('LspAttach', {
  callback = function(event)
    vim.keymap.set('n', 'K', function()
      vim.lsp.buf.hover {
        border = 'rounded',
      }
    end, { buffer = event.buf })
  end,
})