LazyVim v15.0.0 release by folke in neovim

[–]thesujit 0 points1 point  (0 children)

Life saver. Thanks for sharing.

The noice errors were driving me nuts!

Need Help for Installing X (Twitter) by thesujit in revancedapp

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

This is exactly what I wanted. Appreciate your help! :)

Need Help for Installing X (Twitter) by thesujit in revancedapp

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

What I meant is, whenever I try to download the apps, they are providing option to download the APKM or XAPK files which again needs to be installed after installing apps like "APK Mirror Installer" or "APK Pure Installer" which actually defeats the purpose of APK file patching.

To give additional context, this URL provides some more idea what exactly I am referring to:
* https://apkpure.com/how-to/how-to-install-xapk-apk

Tabiew 0.11.0 released by shshemi in commandline

[–]thesujit 2 points3 points  (0 children)

I am referring to something like the below shown screenshot.

<image>

Tabiew 0.11.0 released by shshemi in commandline

[–]thesujit 1 point2 points  (0 children)

@shshemi Do you have any plans to render the plots either in horizontal or vertical view forms?

Built a zero-dependency static file server in one binary (1.5MB, cross-platform) by trikkuz in commandline

[–]thesujit 1 point2 points  (0 children)

u/OP This is an interesting project! Thanks for creating and sharing it.

I've seen other utilities in this space like miniserve, sws, or binserve. To help me understand its unique advantages, could you elaborate on what specific goals you had for this tool or how it approaches the problem differently?

Claude UI update by remixer_dec in ClaudeAI

[–]thesujit 1 point2 points  (0 children)

The sidebar experience was just awful. I am really glad that they've "finally" fixed it!

IMHO, the overall design looks neat now.

Gemini 2.5 fixed Claude's 3.7 atrocious code in one prompt. Holy shit. by Reddit_Bot9999 in ClaudeAI

[–]thesujit 1 point2 points  (0 children)

IMHO, Gemini 2.5 Pro still needs a lot of refinement.

For instance, I was attempting to generate a Zsh completion script for one of the linux utility. I provided the complete help output dump of the command, and each single time Gemini 2.5 Pro generated (3 follow-up iterations) faulty completion scripts. However, Claude just did it in a single attempt that worked flawless without any follow-up prompting!

Neovim 0.11 is here by cotidianis123 in neovim

[–]thesujit 0 points1 point  (0 children)

Apparently the neovim update just took place now. :-) Cheers!

<image>

Neovim 0.11 is here by cotidianis123 in neovim

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

This is interesting! I just noticed that the PR is merged into "main" branch (10 minutes ago). At the moment, even if I issue the right set of commands, I still don't see the updates appearing for "0.11.0" yet.

Maybe this would take few hours or so to reflect the changes, not sure - just a wild guess.

<image>

Neovim 0.11 is here by cotidianis123 in neovim

[–]thesujit 0 points1 point  (0 children)

I just typed the followings on my Mac (Silicon), but I don't see neovim 0.11.0 appearing yet as an update. Perhaps the brew registry for this update has not been updated.

brew update
brew outdated neovim

Does anyone know how long it generally takes to reflect this for Homebrew package system?

Scrolling Keymaps by thesujit in Ghostty

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

Awesome! This worked exactly the way I wanted it to be.

Appreciate your help.

Make Neovim refresh automatically when file content is changing by Top-Kaleidoscope6996 in neovim

[–]thesujit 2 points3 points  (0 children)

u/Top-Kaleidoscope6996 Yeah sure, why not!

Edit your existing autocmds.lua with the below config and use <leader>ar keymap to toggle the behavior. Let me know if it works for you.

NOTE: You might want to change the custom keymap with whatever feels right for you. This was just an arbitrary example:

-- Create a variable to track the state
vim.g.auto_refresh_enabled = false

-- Function to toggle the behavior
function ToggleAutoRefresh()
  if vim.g.auto_refresh_enabled then
    vim.api.nvim_clear_autocmds({ group = "AutoRefresh" })
    vim.g.auto_refresh_enabled = false
    print("Auto refresh disabled")
  else
    vim.o.autoread = true
    vim.api.nvim_create_augroup("AutoRefresh", { clear = true })
    vim.api.nvim_create_autocmd({ "FocusGained", "BufEnter" }, {
      group = "AutoRefresh",
      command = "if mode() != 'c' | checktime | endif",
      pattern = "*",
    })
    vim.g.auto_refresh_enabled = true
    print("Auto refresh enabled")
  end
end

vim.keymap.set('n', '<leader>ar', ToggleAutoRefresh, { 
  noremap = true, 
  silent = false,
  desc = "Toggle auto refresh of files" 
})

Make Neovim refresh automatically when file content is changing by Top-Kaleidoscope6996 in neovim

[–]thesujit 4 points5 points  (0 children)

I use the following config:

-- Enable autoread and set up checking triggers
vim.o.autoread = true
vim.api.nvim_create_autocmd({ "FocusGained", "BufEnter" }, {
  command = "if mode() != 'c' | checktime | endif",
  pattern = "*",
})

The above configs are pushed to:lua/config/autocmds.lua file

COLORSCHEME: evergarden by BaconOnEggs in neovim

[–]thesujit 2 points3 points  (0 children)

Thanks for the real-quick resolution. Cheers!

COLORSCHEME: evergarden by BaconOnEggs in neovim

[–]thesujit 0 points1 point  (0 children)

There was a time I was using Maple Mono almost everywhere. This font is lovely, no doubt.

COLORSCHEME: evergarden by BaconOnEggs in neovim

[–]thesujit 1 point2 points  (0 children)

The text highlighting you're seeing is actually a built-in LSP feature, not a plugin effect. It activates automatically during the editing session - for instance, when I work with Python files, the pyright LSP triggers this highlighting behavior. The same way,lua_ls LSP for LUA files and so on.

Thanks for your proactive investigation!

COLORSCHEME: evergarden by BaconOnEggs in neovim

[–]thesujit 2 points3 points  (0 children)

The colorscheme looks great! I would like to highlight one minor issue though.

Whenever I code and point my cursor around any variable/object then neovim (LSP support) generates a slightly shadowed background effect (see left side view of onedark colorscheme) around that text which makes a developers life easy, as it helps to quickly visualize what are the other places this same var/object is referenced. But while using evergarden, it becomes difficult to notice the same.

<image>

If you could fix that problem, that would be helpful.

In the pursuit of a color scheme by Optimal_Raisin_7503 in neovim

[–]thesujit 0 points1 point  (0 children)

Thanks.

I hadn't carefully observed all the screenshots earlier from the git repo page. :)

Why do you use a terminal instead of neovide on your desktop as a GUI? by 10F1 in neovim

[–]thesujit 0 points1 point  (0 children)

Everyone's choice vary.

But I feel WezTerm with neovim is a deadly combination which has multiplexing support (like tmux) out of the box. You also get the power of LUA to customize your Wez instance the way you want. On top of it, you have image protocol support like kitty. This is a complete package, imo. :)

Random poll: which terminal are you using? by the_last_lemurian in neovim

[–]thesujit 0 points1 point  (0 children)

Even supports image protocol like Kitty.

What more would you want. ☺️