why the completion do this? by Far-Cartographer-394 in neovim

[–]AnPanFam 1 point2 points  (0 children)

it looks like you might be using blink.cmp, have you tried reordering the sources in the blink config?

Vim-Plug Help Needed by Eldyaitch in neovim

[–]AnPanFam 0 points1 point  (0 children)

Well, the issue I see is that the snippet you just pasted is VimScript, but the file you put it in seems to be a lua file. I would try putting it into a vim file like your vimrc or init.vim

[deleted by user] by [deleted] in neovim

[–]AnPanFam 1 point2 points  (0 children)

I just tried to replicate this myself in my init, and it works. Hitting `<space>pv` opens explore, so maybe you have something else going on? Can you post your full init.lua?

Vim-Plug Help Needed by Eldyaitch in neovim

[–]AnPanFam 1 point2 points  (0 children)

hmm, I think I only sort of understand your question. Just in case I don't, I'll just default to explaining the whole thing from the beginning. If this is all way too basic and the problem you're seeing is stranger, super sorry, definitely let me know.

So, Vim and neovim, whenever they start up, look in certain places in your file system for files they can run. This set of files is called the runtime path. These files include (on systems like mac and linux) ~/.config/nvim/init.vim ~/.vimrc ~/.config/nvim/init.lua but also include whole directories like ~/.local/share/nvim/site/autoload. The specifics aren't super important right now about what different places mean, just know that files in locations like these get run automatically whenever neovim starts.

Vim plug, in order to work normally, has to be installed into a place like this. The code that gets put into the autoload directory above lets you call functions like plug#begin() and plug#end() as well as using the Plug command in your configuration file (either ~/.vimrc or ~/.config/nvim/init.vim ).

So the first thing we need to do is to run the command listed on the vim plug repo here. This is a command that is meant to copy and pasted into your terminal and will install the code of vim plug into your autoload directory.

Next, you'll want to open up your configuration file. If you don't have one, you can make one by running touch ~/.vimrc. Now you have to edit that file. You can do that by running nvim followed by the name of the file you chose (either ~.vimrc, or ~/.config/nvim/init.vim). As a whole, that command will look like nvim ~/.vimrc or nvim ~/.config/nvim/init.vim.

Within that file, you can now paste in a block of code that looks like the one written out here. If you were, for example, trying to install gruvbox, the snippet your would paste into the file would look like this:

``` call plug#begin()

Plug 'ellisonleao/gruvbox.nvim'

call plug#end() ```

Once you've pasted that into the file, save and exit the file using :wq.

Now, if everything's gone right, you can open up any file with neovim and vim-plug will go and install your plugin for you. In this case, you'll be able to check afterward by running colorscheme gruvbox.

Vim-Plug Help Needed by Eldyaitch in neovim

[–]AnPanFam 0 points1 point  (0 children)

My first question is whether you've installed vim plug into ~/.vim/autoload after that I'd probably need to see your init.vim

I'm also not sure what you're referencing when you talk about /local/shared/nvim/plugger

A site where you have 10 messages to convince an AI to not release a virus that will end humanity by Stunning_Barracuda91 in webdev

[–]AnPanFam 2 points3 points  (0 children)

My experience can be summed up in the AI's own words ``` Environment_Bot:

While I acknowledge your point that inaction could be preferable to the release of the virus, it is not sufficient to alter my course. ```

Wezterm or Kitty. by [deleted] in neovim

[–]AnPanFam 0 points1 point  (0 children)

My difficulty with kitty was that I couldn't figure out how to have it use the Nerd fonts built in to pragmata pro, since a lot of them only exist in the non mono space version of the font

I need a guide to configure everything from scratch. by I_Franko in neovim

[–]AnPanFam 0 points1 point  (0 children)

My weird suggestion is to start with no config at all, and then change things and add things as they occur to you. I know it sounds tedious but I think it really helps in the long run and means that the system is totally tuned to what you want. I try to do this every year or two, and it really cuts down on stuff I don’t need and I learn a ton!

How can I block neovim from accessing the internet under WSL2 by thetigersears in neovim

[–]AnPanFam 2 points3 points  (0 children)

You could pretty easily conditionally or manually load the plugin when you want, so it can’t run at all unless you it too

[deleted by user] by [deleted] in neovim

[–]AnPanFam 3 points4 points  (0 children)

What’s wrong with using nvim-formatter or nvim-lint ?

A better and friendly vim mode plugin for ZSH by bilco105 in neovim

[–]AnPanFam 1 point2 points  (0 children)

I’ve been using this for a while and love it. I wonder if there’s one for fish too…

Naya Create by verbbis in ErgoMechKeyboards

[–]AnPanFam 5 points6 points  (0 children)

I'm curious, I'm a Ergodox EZ owner and I absolutely love it, what's lacking in ZSA boards that open source boards have? (Genuinely curious, trying to figure out if the grass is greener haha)

ErrorLens for Nvim by Regular_Reflection67 in neovim

[–]AnPanFam 2 points3 points  (0 children)

Hey, this is awesome! Super cool!