101010.pl is one of the many independent Mastodon servers you can use to participate in the fediverse.
101010.pl czyli najstarszy polski serwer Mastodon. Posiadamy wpisy do 2048 znaków.

Server stats:

517
active users

#neovim

7 posts6 participants0 posts today

I just updated my plugin for Vim and Neovim. The purpose is copy the file or directory paths of the file you are currently editing. I give you suggested leader key mappings. If you're a Vim or Neovim user, I'd love to hear your thoughts on it. github.com/andrewwoods/vim-cop

PhpStorms Copy Path/Reference for Vim. Contribute to andrewwoods/vim-copy-path-reference development by creating an account on GitHub.
GitHubGitHub - andrewwoods/vim-copy-path-reference: PhpStorms Copy Path/Reference for VimPhpStorms Copy Path/Reference for Vim. Contribute to andrewwoods/vim-copy-path-reference development by creating an account on GitHub.
Continued thread

Getting NeoVIM to not read anything VIM finds seems impossible, but it is easy to make the vimscript a noop with `if has('nvim') | finish | endif`. The similar Lua versions don't get read by VIM, so that direction isn't a problem.

I implemented Decasify in a single repo as a #vimscript plugin that loads in #vim and a #lua plugin that leads in #neovim, the former depending on the CLI and the latter depending on the Lua Rock. Also there is now an override so NeoVIM can go the other way too.

Bon je dois me rendre à l’évidence : je crois que j’aime bien écrire des articles de blog/tuto sur des sujets #tech comme j’ai fait pour celui sur #neovim
Est-ce qu’il y aurait d’autres sujets qui pourraient vous intéresser ? Mon setup #desktop #linux optimisé pour l’utilisation clavier avec #sway, #kitty, le lanceur #rofi (apps, emojis, etc), mes mappings #ergol et mes quelques apps #cli dont je peux pas me passer ?
Des tutos #python sur #litestar notamment ? Autre chose ?

Je viens de mettre à jour mon tutoriel sur la configuration de #neovim vincent.jousse.org/blog/fr/tec
J’ai notamment simplifié la configuration en enlevant `lsp-zero` et en utilisant les builtins #neovim à la place pour la configuration des LSP. Toujours preneur de vos retours !

Vincent JousseTutoriel : configurer Neovim comme IDE/éditeur de code à partir de zéro
More from Vincent Jousse

I've been using Tridactyl[1] for a long time now for keyboard-driven vi bindings in the browser and yesterday decided to check out the alternatives, thinking maybe they provided some interesting features too.

I looked them all up: Vimium, Vimium C, Vimmatic, SurfingKeys and the result is: I am in awe of how advanced Tridactyl is in comparison to all of them.

Native messaging*, comprehensive ex command mode for commands and settings with live-previewed completions; hint-based visual selection, copying and focus; support for local filesystem text-based configuration; binding sequential browser actions to custom commands; tab group commands; actually launching (neo)vim to edit text areas; ...to name a few!

[1] tridactyl.xyz/

* do bear in mind the security implications of native messaging, as noted by the developers themselves, but you can have most of the functionality without it

Tridactyl - a vim-like Firefox WebExtensionTridactyl - a vim-like Firefox WebExtensionTridactyl - a vim-like Firefox WebExtension

Vim tip for today 🔥

Code folding in Neovim doesn’t need to be complicated. A few lines of config and a single `za` keymap for fold toggling is a good starting point.

```
vim.opt.foldmethod = "expr"
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
vim.opt.foldenable = false
vim.opt.foldlevel = 99
```

I was just wondering if I am the only person among the FreeBSD users having issues with LSPs? Seems like there are many LSPs that are not working under FreeBSD. Tried to integrate some in my Neovim setup just to notice that quite a lot of them are not working or at least are not supported on FreeBSD Mason and Lazy seem to complain about everything. How are you guys dealing with this?

Exactly six months ago, I started my journey into the Neovim universe. I'm still thrilled and look forward to using it every day.

The LSPs are simply unbeatable. Getting automatic completion while writing an Ansible script is incredibly convenient. Writing a Python script on a remote machine is a joy, and having an automatically incrementing serial number in bind zones is a nice bonus. And there's so much more.

Thank you, Neovim Universe!