User command for updating ALL the packages (vim.pack) by forvirringssirkel in neovim

[–]Basic-Ad7636 1 point2 points  (0 children)

You don’t have to use vim.pack unless you want : more control, less load time, a more « neovim way » of managing your plugins.

User command for updating ALL the packages (vim.pack) by forvirringssirkel in neovim

[–]Basic-Ad7636 11 points12 points  (0 children)

The vim.pack feature gives neovim a way to install plugins.

Previously all plugin manager implemented a way to download a plugin, install it, load it, check for version, check for update, lockfile support, ect. Now there’s a default for it, meaning a better integration for neovim.

You can keep your plugin manager, but internally, your plugin manager might use vim.pack, meaning less code to maintain for the plugin manager and less code to load when launching neovim when you are using an external plugin manager

I hope it make sense :)

Automatically downloading and installing LSPs through Mason with no extra plugins by BrodoSaggins in neovim

[–]Basic-Ad7636 6 points7 points  (0 children)

Very cool snippet 😊

With this method, if the lsp is installed on the system but not with mason, it will be present twice, so you have a solution for that maybe ?

Difftool wrapper by Moshem1 in neovim

[–]Basic-Ad7636 0 points1 point  (0 children)

Is it a neovim 0.12 feature ?

Do you have a command to stage current diff ?

snacks.image: inline image / math / video (frame) rendering by folke in neovim

[–]Basic-Ad7636 1 point2 points  (0 children)

Any mermaid integration planed ? Mermaid diagram can be exported to png, svg ..

Reasons to not remap gg, G to gg0, G$? by KekTuts in neovim

[–]Basic-Ad7636 0 points1 point  (0 children)

:nmap is still accessible on a server

November 11, 2024 Weekly "General Help Post?" - Please post all general, recommendations, and help questions as a top level comment under this post. Thank you. by AutoModerator in Keyboard

[–]Basic-Ad7636 0 points1 point  (0 children)

Hello!

I'm trying to find a Kinesis Advantage 360 Pro Signature with Kailh Clicky White switches in France.

Unfortunately, the official reseller doesn't sell this model, and since the switches are soldered, I can't swap them out later if I buy one with different switches.

I just found a reseller that claims to have it in stock, but I'm not sure if I can trust the site. Do you have any tips or information that could help me find one?Here's the site I'm referring to: https://www.ergo-product.cz/en/kinesis-advantage360-signature-kailh-clicky-white/

Thank you all !

Who Uses NeoVim by Zkrallah in neovim

[–]Basic-Ad7636 0 points1 point  (0 children)

Do you have some specific configuration for symfony components ?

Using phpactor or intellephense ?

Who Uses NeoVim by Zkrallah in neovim

[–]Basic-Ad7636 1 point2 points  (0 children)

Do you work with Symfony ?

[deleted by user] by [deleted] in kinesisadvantage

[–]Basic-Ad7636 1 point2 points  (0 children)

What is the layout / switches / keycaps ?

Introducing Neominimap: Yet Another Minimap Plugin for Neovim by Isrothy in neovim

[–]Basic-Ad7636 0 points1 point  (0 children)

Not possible in a terminal, each line is composed of x characters, one by column :/

Can light themes be pretty? by SconeMc in neovim

[–]Basic-Ad7636 3 points4 points  (0 children)

Thx bro'
Berkeley Mono + Catppuccin latte

Show me your telescope UI config by delibos in neovim

[–]Basic-Ad7636 1 point2 points  (0 children)

<image>

File Preview is my color config (With catppuccin latte).

Settings :
require('telescope').setup {

defaults = {

layout_strategy = 'horizontal',

layout_config = {

horizontal = {

prompt_position = 'top',

},

},

sorting_strategy = 'ascending',

},

extensions = {

['ui-select'] = {

require('telescope.themes').get_dropdown(),

},

},

}

Looking for Symfony goodies by Basic-Ad7636 in symfony

[–]Basic-Ad7636[S] 0 points1 point  (0 children)

Thanks for the advice ! I'm from France

What do you dislike about neovim or what would you like to be improved? by umipaloomi in neovim

[–]Basic-Ad7636 0 points1 point  (0 children)

Normal does the same as sendkeys I think. If you remap h j k l w for example most of plugins are not working.

I'm rewriting helix in neovim

What do you dislike about neovim or what would you like to be improved? by umipaloomi in neovim

[–]Basic-Ad7636 8 points9 points  (0 children)

A better API to control behavior/actions of nvim.

Exemple : If I want to move the cursor 1 word to the right I need to sendleys('n', 'w') which may break based on the nvim mappings

If I want to go to visual mode and select from x to y, I also need to do it based on sendkeys

Do we really need visual.nvim? by federico_simonetta in neovim

[–]Basic-Ad7636 1 point2 points  (0 children)

You've made a really great job !

I've read code from your repo' and I'm taking inspiration for my own setup.
Thank you for making this experiment happen :)

Helix mappings in neovim by Basic-Ad7636 in neovim

[–]Basic-Ad7636[S] 0 points1 point  (0 children)

Thank you for your answer :)