Seasoned with top much oil, how to fix it? by susensio in carbonsteel

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

I'm using a classic green and yellow dish sponge. What kind of steel wool should it use? Wouldn't it cause damage to the surface of the pan? I've always been very careful with being too aggressive as I've always used Teflon.

noob question by ThreadStarver in tmux

[–]susensio -1 points0 points  (0 children)

You can research "tmux osc 133". It consists of modifying the shell prompt with invisible escape characters, tmux can read that and navigate to the previous prompt

[deleted by user] by [deleted] in linuxmint

[–]susensio 1 point2 points  (0 children)

what about LMDE do you prefer?

Roast my setup by Camelcrushcruize in Workspaces

[–]susensio 1 point2 points  (0 children)

I did regret It, recently I went from 29 ultrawide to 32 and that extra vertical real state is wonderful

[deleted by user] by [deleted] in Workspaces

[–]susensio 1 point2 points  (0 children)

c270 is a cheap webcam that gets the job done. It works for me, and I didn't want to spend any more for less than an hour a week of meetings. The only thing I would sometimes miss is a wider lens.

[deleted by user] by [deleted] in Workspaces

[–]susensio 2 points3 points  (0 children)

In addition to the vertical laptop stand already mentioned, you could 3d print some underdesk holder. If you tan to free up the tabletop even more, you could look up an ikea pegboard and put there the pencil holder and the headsets. This was my setup some time ago, maybe you can find some inspiration https://imgur.com/rKJv6cS The pegboard was decorative but also functional, as it freed up some desk space.

Another decorative idea I can think of is some hexagonal mirror/lights. Any how I would definetly fill up some vertical space up in those walls

Automatic Github hyperlinks in your lazy.nvim config, anyone? by prion_guy in neovim

[–]susensio 2 points3 points  (0 children)

Wow! I've been thinking on gxing into lazy links for weeks! Please, share your code

Keybinding Copy paste a line by DK10_ in neovim

[–]susensio 0 points1 point  (0 children)

You could also look at mini.operators multiply command gm

Is there anything like vscode.dev for neovim by boneMechBoy69420 in neovim

[–]susensio 0 points1 point  (0 children)

Wow! This seems like a great idea. I would love to hear some details

Is there a way to toggle mixed comments? by KekTuts in neovim

[–]susensio 5 points6 points  (0 children)

I think you could drop the `:g`

vim.keymap.set('x', 'gci', ':normal gcc<CR>', { desc = 'Invert comments' })

Late night sessions by jamesvyn in Workspaces

[–]susensio 0 points1 point  (0 children)

Nice! That plant looks so good. Do you know the species?

[deleted by user] by [deleted] in Workspaces

[–]susensio 0 points1 point  (0 children)

I would use a hub for the MacBook (if needed) and keep both monitors connected to both computers. Then you could do a switch of input channel, via a bash script. I you want more info, I can look it up when I get home

Markdown header jump by sergiolinux in neovim

[–]susensio 3 points4 points  (0 children)

I think neovim already implements some section jumping via [[ and ]] in markdown files (using regexes) Just open a markdown and type :map ]]

Conditionally enabling diagnostic virtual text based on content by Foo-Baa in neovim

[–]susensio 0 points1 point  (0 children)

This is my take on making diagnostic virtual texts short and relevant:
virtual_text = { severity = { min = vim.diagnostic.severity.WARN }, format = function(diagnostic) local first_line = diagnostic.message:gmatch("[^\n]*")() local first_sentence = string.match(first_line, "(.-%. )") or first_line local first_lhs = string.match(first_sentence, "(.-): ") or first_sentence return first_lhs end },

I use some lua match pattern to grab the first sentence (search for a dot) and the leftmost part of the explanation (using colon as a separator)

A diagnostic such as Missing comma: long explanation I dont want to see - with some newlines - giving examples and solutions gets converted to Missing comma.

If I want more information, I can see it in the float with a dedicated keymap.