blob: 2736dae7ce3cdcefb879b2bd3c14c77ea442eb48 (
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
|
# fugitive-bitbucketserver
## Installation
Via Plugin Manager
#### Vundle
```viml
Plugin 'borissov/fugitive-gitea'
```
#### VIM Plug
```viml
Plug 'borissov/fugitive-gitea'
```
### Manual Installation
```bash
cd ~/.vim/bundle
git clone git://github.com/borissov/fugitive-gitea
```
## Settings
In your vimrc file add options to set your bitbucket server urls.
```viml
let g:fugitive_gitea_domains = ['http://yoururl.com']
```
### Originaly from
tommcdo/vim-fubitive
|