2012-11-26 09:17:28 +01:00
Powerline
=========
:Author: Kim Silkebækken (kim.silkebaekken+vim@gmail.com)
2014-12-07 14:08:24 +01:00
:Source: https://github.com/powerline/powerline
2012-12-17 15:24:42 +01:00
:Version: beta
2013-08-05 10:56:27 +02:00
**Powerline is a statusline plugin for vim, and provides statuslines and
2017-05-17 23:54:54 +02:00
prompts for several other applications, including zsh, bash, fish, tmux,
IPython, Awesome, i3 and Qtile.**
2013-08-05 10:56:27 +02:00
2013-08-20 17:59:41 +02:00
* `Support forum`_ (powerline-support@googlegroups.com)
* `Development discussion`_ (powerline-dev@googlegroups.com)
2016-07-08 09:52:06 +02:00
.. image :: https://api.travis-ci.org/powerline/powerline.svg?branch=develop
2013-08-20 17:59:41 +02:00
:target: `travis-build-status`_
:alt: Build status
2014-12-07 14:08:24 +01:00
.. _travis-build-status: https://travis-ci.org/powerline/powerline
2013-08-20 17:59:41 +02:00
.. _`Support forum`: https://groups.google.com/forum/#!forum/powerline-support
.. _`Development discussion`: https://groups.google.com/forum/#!forum/powerline-dev
2013-08-05 10:56:27 +02:00
Features
--------
* **Extensible and feature rich, written in Python.** Powerline was
completely rewritten in Python to get rid of as much vimscript as
possible. This has allowed much better extensibility, leaner and better
config files, and a structured, object-oriented codebase with no mandatory
third-party dependencies other than a Python interpreter.
* **Stable and testable code base.** Using Python has allowed unit testing
of all the project code. The code is tested to work in Python 2.6+ and
Python 3.
* **Support for prompts and statuslines in many applications.** Originally
created exclusively for vim statuslines, the project has evolved to
provide statuslines in tmux and several WMs, and prompts for shells like
2014-09-20 15:40:33 +02:00
bash/zsh and other applications. It’ s simple to write renderers for any
other applications that Powerline doesn’ t yet support.
2013-08-05 10:56:27 +02:00
* **Configuration and colorschemes written in JSON.** JSON is
a standardized, simple and easy to use file format that allows for easy
2014-09-20 15:40:33 +02:00
user configuration across all of Powerline’ s supported applications.
2013-08-05 10:56:27 +02:00
* **Fast and lightweight, with daemon support for even better performance.**
Although the code base spans a couple of thousand lines of code with no
2014-09-20 15:43:19 +02:00
goal of “less than X lines of code”, the main focus is on good performance
2013-08-05 10:56:27 +02:00
and as little code as possible while still providing a rich set of
features. The new daemon also ensures that only one Python instance is
launched for prompts and statuslines, which provides excellent
performance.
2014-09-20 15:40:33 +02:00
*But I hate Python / I don’ t need shell prompts / this is just too much
2013-08-05 10:56:27 +02:00
hassle for me / what happened to the original vim-powerline project / …*
You should check out some of the Powerline derivatives. The most lightweight
2018-09-20 11:53:22 +02:00
and feature-rich alternative is currently the `vim-airline
2016-04-21 18:27:16 +02:00
<https://github.com/vim-airline/vim-airline> `_ project.
2013-08-05 10:56:27 +02:00
2020-02-04 13:12:16 +01:00
Configuration
-------------
2012-11-26 09:17:28 +01:00
2020-02-04 13:12:16 +01:00
Basic powerline configuration is done via `JSON` files located at `.config/powerline/` . It is a good idea to start by copying the default configuration located at `powerline_root/powerline/config_files/` to `.config/powerline/` .
If you installed the powerline from the AUR or via pip, `powerline_root` should be `/usr/lib/python3.6/site-packages/` or something similar, depending on your python version.
This should yield you the following directory structure:
::
.config/powerline/
├── colorschemes
│ ├── ...
│ └── wm
| └── default.json // Your configuration goes here
├── colors.json
├── config.json
└── themes
├── ...
└── wm
└── default.json // Your configuration goes here
The files in the subdirectories of `themes` are used to specify which segments shall be shown; the files in subdirectories of `colorschemes` are used to specify which colors (as defined in `colors.json` ) shall be used to display a segment.
Note that your local configuration only overrides the global configuration, it does not replace it, i.e. if you don't configure something locally, the global default will be used instead.
* Consult the `documentation <https://powerline.readthedocs.org/en/latest/configuration.html#quick-setup-guide> `_ for more details. See also the `segment reference <https://powerline.readthedocs.org/en/latest/configuration/segments.html> `_ for available segments and their configuration.
2014-12-07 14:08:24 +01:00
* Check out `powerline-fonts <https://github.com/powerline/fonts> `_ for
pre-patched versions of popular, open source coding fonts.
2013-03-08 18:35:44 +01:00
2012-12-18 16:05:55 +01:00
Screenshots
-----------
2013-01-17 08:29:04 +01:00
Vim statusline
^^^^^^^^^^^^^^
2012-12-18 16:05:55 +01:00
**Mode-dependent highlighting**
2014-12-07 14:08:24 +01:00
* .. image:: https://raw.github.com/powerline/powerline/develop/docs/source/_static/img/pl-mode-normal.png
2012-12-18 16:05:55 +01:00
:alt: Normal mode
2014-12-07 14:08:24 +01:00
* .. image:: https://raw.github.com/powerline/powerline/develop/docs/source/_static/img/pl-mode-insert.png
2012-12-18 16:05:55 +01:00
:alt: Insert mode
2014-12-07 14:08:24 +01:00
* .. image:: https://raw.github.com/powerline/powerline/develop/docs/source/_static/img/pl-mode-visual.png
2012-12-18 16:05:55 +01:00
:alt: Visual mode
2014-12-07 14:08:24 +01:00
* .. image:: https://raw.github.com/powerline/powerline/develop/docs/source/_static/img/pl-mode-replace.png
2012-12-18 16:05:55 +01:00
:alt: Replace mode
**Automatic truncation of segments in small windows**
2014-12-07 14:08:24 +01:00
* .. image:: https://raw.github.com/powerline/powerline/develop/docs/source/_static/img/pl-truncate1.png
2012-12-18 16:05:55 +01:00
:alt: Truncation illustration
2014-12-07 14:08:24 +01:00
* .. image:: https://raw.github.com/powerline/powerline/develop/docs/source/_static/img/pl-truncate2.png
2012-12-18 16:05:55 +01:00
:alt: Truncation illustration
2014-12-07 14:08:24 +01:00
* .. image:: https://raw.github.com/powerline/powerline/develop/docs/source/_static/img/pl-truncate3.png
2012-12-18 16:05:55 +01:00
:alt: Truncation illustration
2012-12-19 14:46:14 +01:00
2013-01-17 08:29:04 +01:00
----
2012-12-19 14:46:14 +01:00
The font in the screenshots is `Pragmata Pro`_ by Fabrizio Schiavi.
2016-04-21 18:27:16 +02:00
.. _`Pragmata Pro`: http://www.fsd.it/shop/fonts/pragmatapro