mamot.fr is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mamot.fr est un serveur Mastodon francophone, géré par La Quadrature du Net.

Server stats:

3.5K
active users

#neovim

41 posts37 participants6 posts today
Replied to arthur.pizza

@art I’m a long time #Vim and #NeoVim user. In fact, I’ve given talks on them. I use Vim key-bindings everywhere I can; especially #IdeaVim in #PyCharm. I’ve been using #HelixEditor lately. The key-bindings come from Vim, but aren’t about playing code golf. They’re about being easy to use and remember. When you start a multi-key sequence, there is typically a menu that pops up showing you what the next key can be. The big difference, though, is that in Helix first you make a selection, and then you act on it.

Helix is easier to use than Vim/NeoVim. I’m just a Helix beginner especially compared to my skills in Vim. Helix is absolutely worth a try. If it’s Vim for you, then it’s Vim. But Helix might offer you something familiar but simpler.

Continued thread

Also I really like these "semantic" color schemes. I started by using one called "Poimandres": github.com/olivercederborg/poi

I found it aesthetically pleasing at first, more minimalist, but then with use I realised it was also so much less distractive.

It's great to have treesitter and all the bells and whistles but code that looks like rainbows makes it harder to focus.

Now zenbones is my new way to go:
github.com/zenbones-theme/zenb

And it's really well designed.

After experiencing an episode of aura and consequent migraine, the other day I decide to give a shot at light themes.

I think I spend so much time staring at various screens that having this kind of issues is almost inevitable, so I need to mitigate it.

First I switched my phone to light mode, and I could already feel the improvement.

Then the code editor (#neovim) UI. I settled on a theme called "zenbones" in its light variant.

It's great! I feel my eyes are doing better already.

In the past couple of days I’ve finally had some time to work again on nvim-http.

It’s a #Neovim #Python plugin compatible with comparable HTTP client plugins in VsCode and IntelliJ - or a little #Postman that runs in your favourite editor.

While I was away I didn’t notice that the repo in the meantime has ammassed almost 100 stars and it had a dozen of outstanding issues - sorry!

The latest release includes many improvements and features:

  • Fully migrated to the Neovim remote plugins API, now that Neovim has introduced breaking changes that make it incompatible with the old vim.async_run API.

  • Better handling of HTTP requests that don’t end with newlines or comment headers.

  • Added support for environent variables specified in .env files, either in the same directory as the .http file or in the current working directory of the editor. The plugin now also supports environment variables specified both in *.env.json files (VsCode compatibility) and .env files.

  • Added support for inline shell commands, either in the environment variable or in the HTTP request, delimited by $(...).

  • Added -h and -t options to the :Http command to display the output in a horizontal split or in a new tab (the default is a vertical split).

  • Added --no-redirects option to :Http to avoid following redirects.

  • Added -T/--timeout option.

https://github.com/blacklight/nvim-http

After a recent update neovim doesn't seem to correctly active my colorscheme anymore. It applies it seemingly as :colorscheme shows me the correct colorscheme but only a second :colorscheme <name> does actually make it take affect. This is royally annoying. Has anyone experienced similar issues?