aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..56bd82a
--- /dev/null
+++ b/README.md
@@ -0,0 +1,33 @@
1# vim-under-the-cursor
2
3Underlines all occurances of the word under the cursor and additionally
4displays the color under the cursor if it is written as a hex value. The
5alpha-channel (#rgba colors) is also supported and changes the brightness of
6colors.
7
8![screenshot](/screenshot.png)
9
10## Installation
11
12This should be sufficient:
13
14 git clone https://git.entwicklerseite.de/vim-under-the-cursor \
15 ~/.vim/pack/coderonline/start/vim-under-the-cursor
16
17Or as submodule:
18
19 git submodule add https://git.entwicklerseite.de/vim-under-the-cursor \
20 ~/.vim/pack/coderonline/start/vim-under-the-cursor
21
22Or download the zip file and extract it under `~/.vim/pack/coderonline/start/`.
23
24## Installation using plugin managers
25
26### vim-plug
27
28 Plug 'coderonline/vim-under-the-cursor'
29
30### dein.vim
31
32 call dein#add('coderonline/vim-under-the-cursor')
33
..