aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMax Christian Pohle2020-07-16 22:27:58 +0200
committerMax Christian Pohle2020-07-16 22:27:58 +0200
commitc4661ec60a6cb11deb77ec290d954d9070667bf5 (patch)
treec1cd924ca39e3d0d4f8aad033f3bd4d3d9345d81 /README.md
downloadvim-recently-used-c4661ec60a6cb11deb77ec290d954d9070667bf5.tar.bz2
vim-recently-used-c4661ec60a6cb11deb77ec290d954d9070667bf5.zip
Initial release as a separate plugin
Diffstat (limited to 'README.md')
-rw-r--r--README.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..fd849f0
--- /dev/null
+++ b/README.md
@@ -0,0 +1,35 @@
1# vim-recently-used
2
3Here comes one of my most frequently used plugins!
4
5This plugin shows a list of recently used files from the current directory when
6starting Vim. There is also a simple command `:RecentlyUsed` available to
7update the list after changing to another directory with `:cd`.
8
9![screenshot](/screenshot.png)
10
11
12## Installation
13
14This should be sufficient:
15
16 git clone https://github.com/coderonline/vim-recently-used ~/.vim/pack/coderonline/
17
18Or download the zip file and extract it under `~/.vim/pack/coderonline`.
19
20## Installation using plugin managers
21
22### vim-plug
23
24 Plug 'coderonline/vim-recently-used'
25
26### dein.vim
27
28 call dein#add('coderonline/vim-recently-used')
29
30
31## Design goals
32
33* Keep it really simple
34* Make it a one liner
35
..