Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to install manually without NeoBundle? #10

Open
Strykar opened this issue Dec 19, 2022 · 2 comments
Open

How to install manually without NeoBundle? #10

Strykar opened this issue Dec 19, 2022 · 2 comments

Comments

@Strykar
Copy link

Strykar commented Dec 19, 2022

NeoBundle seems outdated, can't I just add this stuff to my .vimrc or something?

@tacerus
Copy link

tacerus commented Nov 8, 2023

Hi,

you can just install the files in your vim's site directory. In my case, with NeoVim, I use the following process:

cd ~/work/git
git clone https://github.com/nfnty/vim-nftables.git

cd ~/.local/share/nvim/site/

 # create directories if they don't exist yet / this is the first time manually installing a plugin. otherwise skip and use existing directories.
mkdir ftdetect ftplugin indent syntax

for x in ftdetect ftplugin indent syntax; do ln -s ~/work/git/vim-nftables/$x/nftables.vim $x/; done

Of course, this is just my opinionated approach, but maybe it's useful. :)

@longthanhtran
Copy link

If you are using vim 8.*, you can use native vim packages (:h packages) to create the folder structure under ~/.vim/pack then place the packages to the according folder. After this step, vim would auto load the plugins/packages.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants