Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Vim Plug | 30,869 | 6 months ago | 126 | mit | Vim Script | |||||
:hibiscus: Minimalist Vim Plugin Manager | ||||||||||
Vimrc | 29,349 | 7 days ago | 7 | mit | Vim Script | |||||
The ultimate Vim configuration (vimrc) | ||||||||||
Nnn | 17,073 | a day ago | 20 | July 26, 2022 | 2 | bsd-2-clause | C | |||
n³ The unorthodox terminal file manager | ||||||||||
Vim Go | 15,560 | 20 days ago | 12 | February 16, 2022 | 29 | other | Vim Script | |||
Go development plugin for Vim | ||||||||||
Vim Pathogen | 11,902 | a year ago | 27 | vim | Vim Script | |||||
pathogen.vim: manage your runtimepath | ||||||||||
Tmux Resurrect | 9,931 | 3 months ago | 214 | mit | Shell | |||||
Persists tmux environment across system restarts. | ||||||||||
Nvim Lspconfig | 8,106 | a day ago | 59 | apache-2.0 | Lua | |||||
Quickstart configs for Nvim LSP | ||||||||||
Ultisnips | 7,253 | 5 days ago | 116 | gpl-3.0 | Python | |||||
UltiSnips - The ultimate snippet solution for Vim. Send pull requests to SirVer/ultisnips! | ||||||||||
Dotfiles | 6,903 | 6 months ago | 3 | bsd-2-clause | Ruby | |||||
YADR - The best vim,git,zsh plugins and the cleanest vimrc you've ever seen | ||||||||||
Lightline.vim | 6,538 | 21 days ago | mit | Vim Script | ||||||
A light and configurable statusline/tabline plugin for Vim |
Plugin is currently in maintenance mode, no feature requests will be accepted. Vim-powerline will be deprecated in favour of Lokaltog/powerline once it is ready.
Author: | Kim Silkebkken ([email protected]) |
---|---|
Source: | Lokaltog/vim-powerline |
Version: |
Powerline is a utility plugin which allows you to create better-looking, more functional vim statuslines. See the screenshots below for a demonstration of the plugin's capabilities.
It's recommended that you install the plugin using Pathogen or Vundle.
After the plugin is installed update your help tags and see :help
Powerline
for instructions on how to enable and configure the plugin.
See the Troubleshooting section below if you're having any issues with the plugin or the font patcher.
Note: You need a patched font to be able to use the symbols in the
statusline. An experimental Python/fontforge-based font patcher is included
in the fontpatcher
directory. See fontpatcher/README.rst
for usage
instructions.
Make sure that you have let g:Powerline_symbols = 'fancy'
in your
vimrc
file. The settings may be loaded too late if you have this in
gvimrc
, so always put this in your vimrc
.
Clear the cache using :PowerlineClearCache
and restart vim.
Make sure that you've configured gvim or your terminal emulator to use a patched font.
Make sure that vim is compiled with the --with-features=big
flag.
Font patching is only known to work on most Linux and OS X machines. If you have followed the instructions in the fontpatcher README and still have problems, please submit an issue on GitHub.
You can download some community-contributed patched fonts from the Powerline wiki if you don't want to mess around with the font patcher.
:PowerlineClearCache
and restart vim.The default OS X Terminal app is known to have some issues with the Powerline colors. Please use another terminal emulator. iTerm2 should work fine.
The arrows may have the wrong colors if you have changed the "minimum contrast" slider in the color tab of your OS X settings.
^B
in it!Please add set encoding=utf-8
to your vimrc
.
You may also need to set your LANG
and LC_*
environment
variables to a UTF-8 locale (e.g. LANG=en_US.utf8
). Consult your
Linux distro's documentation for information about setting these
variables correctly.
^
or underline characters in it!You need to configure the fillchars
setting to disable statusline
fillchars (see :h fillchars
for details). Add this to your
vimrc
to solve this issue:
set fillchars+=stl:\ ,stlnc:\
set laststatus=2
in your vimrc
.You need to tell tmux that it has 256-color capabilities. Add this to
your .tmux.conf
to solve this issue:
set -g default-terminal "screen-256color"
If you use iTerm2, make sure that you have enabled the setting 'Set locale variables automatically' in Profiles > Terminal > Environment.
If you have any other issues and you can't find the answer in the docs, please submit an issue on GitHub.