aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: dd2402e0144d4e79d363467df488671bf261a4ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# vim-recently-used

Here comes one of my most frequently used plugins!

This plugin shows a list of recently used files from the current directory when
starting Vim. There is also a simple command `:RecentlyUsed` available to
update the list after changing to another directory with `:cd`.

![screenshot](/screenshot.png)


## Installation

This should be sufficient:

    git clone https://git.entwicklerseite.de/vim-recently-used \
        ~/.vim/pack/coderonline/start/vim-recently-used

Or as submodule:

    git submodule add https://git.entwicklerseite.de/vim-recently-used \
        ~/.vim/pack/coderonline/start/vim-recently-used

Or download the zip file and extract it under `~/.vim/pack/coderonline/start/`.

## Installation using plugin managers

### vim-plug

    Plug 'coderonline/vim-recently-used'

### dein.vim

    call dein#add('coderonline/vim-recently-used')


## Design goals

* Keep it really simple
* Make it a one liner
..