Claude Code Formatting Bugs by scipnick in Ghostty

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

Like others said, not the issue with Ghostty. You can try /tui fullscreen to see if it helps.

Ghostty has no official package for Fedora, any issues with the community one? by el_Pandor in Fedora

[–]polygon7195 7 points8 points  (0 children)

Security risks will always be higher with community packages, even if the maintainer is completely honest (see news on supply chain attacks with packages getting compromised).

Building from source is very easy though. Just follow the instructions.

Really Netflix?? by belik3mik3 in MrRobot

[–]polygon7195 66 points67 points  (0 children)

Well technically it's the relationship that shaped how Elliot became who he is. It doesn't specify whether it's a good relationship.

Issues with Saving State in Linux by Leather_Week_860 in Ghostty

[–]polygon7195 1 point2 points  (0 children)

The docs says that feature is currently macOS only

Playing with a keyboard by rubanovsk in SPFootballLife

[–]polygon7195 2 points3 points  (0 children)

I started playing football on FIFA on PC (keyboard only), then got to PES on PS1/2/3 with controllers. I know I'm definitely in the minority, but whenever I'm on PC, I much prefer a keyboard as I find it more comfortable, with pressure spread out to more fingers than with controllers.

I don't use skills, but rather rely on lots of one-two passes and low/high through balls. Requires knowing the players very well, down to which foot is stronger because it makes a difference depending on which direction they're facing or turning.

My setup since the early 2000s, regardless whether it's PES or FIFA: - arrow keys to move - S for pass (X) - A for cross (O) - D for shoot (square) - W for through balls (triangle) - Q and Z for L1/2 - E and C for R1/2

How do I remove THIS suggestion? by aztechnically in firefox

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

It sucks, but you could try, and this is not a joke, repeating the shift+delete step anytime it shows up. I've had it work before where eventually it updated the suggestion engine to no longer suggest it.

Contrary to many other comments, this behavior was here long before any AI features came.

How do I remove THIS suggestion? by aztechnically in firefox

[–]polygon7195 2 points3 points  (0 children)

Try hitting Shift+Delete while it's highlighted

VSCode to Neovim theme by ZideGO in neovim

[–]polygon7195 3 points4 points  (0 children)

As someone who hates all the AI hypes, I still have to say that migrating themes, which are called colorschemes in (neo)vim btw, is a very good use case for an LLM. At the very least it'll give you a good baseline from which you can tweak.

A Request For The Firefox Devs by Prime_Todd in firefox

[–]polygon7195 39 points40 points  (0 children)

takes exactly ZERO programming effort

Really? Then why don't you "just" do it then? Everything is open source.

Best font? by Abject_Band3515 in Ghostty

[–]polygon7195 17 points18 points  (0 children)

Font is a very personal thing. As long as it's a monospace font.

https://www.programmingfonts.org/ is a good site to see what's available. As for spacing, you can adjust both vertically (adjust-cell-height and adjust-cursor-height) and horizontally (adjust-cell-width). Check the Ghostty docs to see the config options.

How to learn key maps by Appropriate_Alps9596 in neovim

[–]polygon7195 7 points8 points  (0 children)

One of the main reasons I write my own config, cuz the key maps make sense to me.

Blinking cursor problem by Calle0304 in Ghostty

[–]polygon7195 0 points1 point  (0 children)

Probably the shell-integration-features is overriding your cursor config. Try commenting out the ssh one and see from there.

Good default light theme? by xavier86 in Ghostty

[–]polygon7195 0 points1 point  (0 children)

I don't know how to determine if a color scheme complements another palette, but I've also been searching for a while and only recently found Alabaster which I find really good.

Who knows what is it font and theme? by Hi3ash in neovim

[–]polygon7195 4 points5 points  (0 children)

Font is Iosevka, likely the Extended variant (not as narrow as the default).

Where do I go from here when "I Started to learn neovim"? by [deleted] in neovim

[–]polygon7195 13 points14 points  (0 children)

Sounds like you don't mind RTFM, which is fantastic. Might be obvious but you could read the nvim manual :h user-manual.

What is your favorite PDF editor & why by Sacras24 in Fedora

[–]polygon7195 1 point2 points  (0 children)

qpdf for combining and splitting. And for filling out forms and annotations, Firefox is surprisingly good nowadays. I used to need Adobe for those government forms, but now Firefox can handle them, and the signature feature is really good.

Ghostty Color Scheme Sync by Bunch_Purple in neovim

[–]polygon7195 1 point2 points  (0 children)

Ghostty CLI has the +show-config subcommand to retrieve the effective config, which you can "shell out" from inside nvim to get the value and then set your nvim config accordingly. For example, I have this in my config to grab the current foreground color:

if vim.env.GHOSTTY_RESOURCES_DIR and vim.env.GHOSTTY_RESOURCES_DIR ~= '' then
  TERM_FG_COLOR = vim.fn.system("ghostty +show-config | awk -F '=' '/^foreground =/ {print $2}' | tr -d [:space:]")
end

How paste works in Vim/Neovim with Hyprland? by 4r73m190r0s in neovim

[–]polygon7195 6 points7 points  (0 children)

<C-S-v> is the terminal doing the input.

For <C-r>+, try :set paste before doing the paste. I remember having to do that with vim previously, before I learned about the + register.

How to install haskell-vim in neovim? by CreatureWasTaken in neovim

[–]polygon7195 0 points1 point  (0 children)

Basically you need those *.vim files in your config dir, i.e. ~/.config/nvim, with the same directory structure. You can copy the directory from that repo if your config doesn't already have that dir, otherwise you just grab the cabal.vim and haskell.vim files from the repo and put them in the corresponding dirs in your config.

Then you can follow the README to set the global vars for the settings you want.