vim-awesome
Awesome Vim plugins from across the universe (by divad12)
vundle
Vundle, the plug-in manager for Vim (by gmarik)
Our great sponsors
vim-awesome | vundle | |
---|---|---|
48 | 22 | |
1,960 | 23,406 | |
0.0% | 0.1% | |
0.0 | 0.0 | |
over 2 years ago | 10 months ago | |
Python | Vim Script | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
vim-awesome
Posts with mentions or reviews of vim-awesome.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-12-26.
-
Vim vs Vscode: Developer Productivity
Vim is infinitely customizable. While Vscode allows you to change the app’s color scheme, install plugins, and change a few app settings, Vim offers you complete control over the editor’s experience. You have thousands of plugins to choose from. You can completely remap any keybinding and create new shortcuts for tasks in your daily workflow. And giving you more power as a developer, you can completely reprogram or automate your Vim experience with the built-in Vimscript language or Lua for Neovim.
-
Let the IDE wars, uh, continue!
This is a pretty good website for browsing vim plugins: https://vimawesome.com
VimAwesome is a website with a curated list of vim plugins. You can search by category or type for something that fits your needs. I highly recommend browsing the list just to see what there is.
-
'%' not working - should jump to matching '{}'
I recently moved to Mac/OSX from Linux and have struggled with my vim setup. I found some installations bundles that attempt to set everything up for me, so I used one of those, iirc it is this one: https://vimawesome.com/ . However, I have some issues with it. While coding, I often want to jump around code blocks and I do so by taking advantage of the '{}' characters (curly braces) used for code blocks in the languages I use (javascript and C++). In vi, the '%' character can be used to jump between the matching curly brace. However, in my current setup, this does not work. How can I find how to make the '%' feature work again?
-
I have no idea what I need...
That is probably a couple of hours worth of work getting the plugins set up. Then you're in the wild west looking for things that are interesting. I suggest you stay as minimal as you can as long as you can, but there is plenty to find.
-
Neovim Customization
Find the desireable plug-ins from VIM Awesome this is one of the best places to find vim and neovim plugins. For this tutorial we will add couple of plug-ins to make our neovim look good and work like an ide.
-
Is there a websitre for rating or popularity ranking for vim plugins?
Unfortunately not maintained anymore, but it updates automatically so is still somewhat useful.
- Boss: "Write better comments."
-
Can't get over this obstacle to join Vim Community
Are you aware of https://vimawesome.com/ Makes it pretty easy to find plugins.
vundle
Posts with mentions or reviews of vundle.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-12-19.
-
What's in my RC 2022
## Vundle Install Script function install-vundle() { git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim; sudo gem install vundle-cli; if ! grep -Fxq 'set rtp+=~/.vim/bundle/Vundle.vim' ~/.vimrc then echo "\nset nocompatible\nfiletype off\nset rtp+=~/.vim/bundle/Vundle.vim\ncall vundle#begin()\n\nPlugin 'VundleVim/Vundle.vim'\n\ncall vundle#end()\nfiletype plugin indent on" >> ~/.vimrc; fi }
-
linux c++ devs, what does your dev environment look like?
A typo. I meant vundle. VimBundle
-
Can't get plugins to work with vundle
I have just started using vim and already really like it. As I mainly want to use it for Python, I was trying to set up some relevant plugins (so far ale) using vundle. I have cloned the Vundle and ale folder into ~/.vim/bundle. But when I run :Pluginstall in my .vimrc get the errors:
-
Idea for a library manager
Let me start this by saying I am new to OpenSCAD, but I have an idea that I would be interested in working on if this is something people think would be useful. My idea is to make a library manager like Vundle that would do all the repository pulling and library management for me. Because OpenSCAD doesn't have a central repository for libraries like PyPI, and people have made some really cool libraries on GitHub, I think a manager like Vundle would be a good fit.
-
vim extensions in dockers
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
-
(Should you) Get started with vim
syntax on set number " use spaces instead of tabs set tabstop=2 shiftwidth=2 expandtab " git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'bling/vim-airline' Plugin 'prabirshrestha/vim-lsp' Plugin 'mattn/vim-lsp-settings' Plugin 'prabirshrestha/asyncomplete.vim' Plugin 'prabirshrestha/asyncomplete-lsp.vim' Plugin 'junegunn/fzf' Plugin 'junegunn/fzf.vim' Plugin 'ledesmablt/vim-run' Plugin 'dense-analysis/ale' Plugin 'hashivim/vim-terraform' call vundle#end() " show spaces set listchars=trail:·,lead:· set list " SHORTCUTS " vim-run nnoremap :Run " formatting nnoremap :gg=G " fzf.vim let fzf_default_command='find -L' nnoremap :Files nnoremap :GFiles " UNUSED PLUGINS -- for now " Plugin 'scrooloose/nerdtree' " nnoremap n :NERDTreeFocus " nnoremap :NERDTree " nnoremap :NERDTreeToggle " nnoremap :NERDTreeFind
-
Ubuntu WSL2 Ansible Playbook
Ensures Vundle plugin manager is installed.
- Comandos básicos do Vim e configurações úteis
-
10 Vim plugins I can’t live without (and how to install them?)
Vundle
-
Help with setting up Vim for Python 🙏🏻
This is a good guide for starting from scratch. It suggests you use the Vundle package manager, which I think will go a long way to helping set things up correctly, but the whole guide seems like it's worth following.
What are some alternatives?
When comparing vim-awesome and vundle you can also consider the following projects:
vim-plug - :hibiscus: Minimalist Vim Plugin Manager
vim-pathogen - pathogen.vim: manage your runtimepath
bracey.vim - live edit html, css, and javascript in vim
tagbar - Vim plugin that displays tags in a window, ordered by scope
SpaceVim - A community-driven modular vim/neovim distribution - The ultimate vimrc
delimitMate - Vim plugin, provides insert mode auto-completion for quotes, parens, brackets, etc.
vim-easy-align - :sunflower: A Vim alignment plugin
awesome-neovim - Collections of awesome neovim plugins.
vim-gutentags - A Vim plugin that manages your tag files
vimwiki - Personal Wiki for Vim
awesome-vim-colorschemes - Collection of awesome color schemes for Neo/vim, merged for quick use.