aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d808107
--- /dev/null
+++ b/README.md
@@ -0,0 +1,38 @@
1# vim-fancy-line
2
3This statusline is kept minimalistic and easy to understand. Its main feature
4is, that it uses Vims highlight groups correctly and displays the status-
5and tab-bar after the definitions in the currently selected colorscheme.
6That means, that the highlight groups `StatusLine`, `StatusLineNC`,
7`StatusLineTerm` and `StatusLineTermNC` are considered. Otherwise the bars
8look similar to powerline, but that is no wonder, because the `` symbol
9is the only one, which used to be available in code page 437 and thus broadly
10compatible.
11
12## Installation
13
14This should be sufficient:
15
16 git clone https://git.entwicklerseite.de/vim-fancy-line \
17 ~/.vim/pack/coderonline/start/vim-fancy-line
18
19Or as submodule:
20
21 git submodule add https://git.entwicklerseite.de/vim-fancy-line \
22 ~/.vim/pack/coderonline/start/vim-fancy-line
23
24Or download the zip file and extract it under `~/.vim/pack/coderonline/start/`.
25
26## Installation using plugin managers
27
28### vim-plug
29
30 Plug 'coderonline/vim-fancy-line'
31
32### dein.vim
33
34 call dein#add('coderonline/vim-fancy-line')
35
36## Design goals
37
38* Keep it simple
..