aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 3624f6c0dbff4a1556315d62fb38370ee65005df (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
41
42
43
44
45
46
47
48
# nvim-setup

My custom Neovim setup

## Installation

Download into your config directory

```sh
git clone --depth=1 https://github.com/pml68/nvim-setup ~/.config/nvim
```

## Usage with Docker

Pull the image
```sh
docker pull ghcr.io/pml68/neovim:latest
```

Or build it
```sh
docker build -t neovim -f Dockerfile .
```

And then run it
```sh
docker run -it neovim:latest
```

The image size is somewhere around 4.5GB due to every language I use being included (C# with .NET, Java 21 and 17 etc.)

### TeX

There is also an image that contains texlive packages I use on top of everything in the base image. The size is ~5.4GB.

Pull or build the image
```sh
docker pull ghcr.io/pml68/neovim-tex:latest

# OR

docker build -t neovim-tex -f Dockerfile.tex .
```

And run it
```sh
docker run -it neovim-tex:latest
```