README: use triple quoted blocks for meson/ninja examples

This allows us to specify which syntax highlighting (sh) to use.
This commit is contained in:
Daniel Eklöf 2019-12-29 15:37:35 +01:00
parent 57956634e8
commit 8854ae134d
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -273,31 +273,37 @@ you intend to install a release build of foot, in which case you might
be interested in the compiler flags used there.
First, create a build directory, and switch to it:
mkdir -p bld/debug && cd bld/debug
```sh
mkdir -p bld/debug && cd bld/debug
```
Second, configure the build (if you intend to install it globally, you
might also want `--prefix=/usr`):
meson --buildtype=debug ../..
```sh
meson --buildtype=debug ../..
```
Three, build it:
ninja
```sh
ninja
```
You can now run it directly from the build directory:
./foot
```sh
./foot
```
But note that it will default to `TERM=foot`, and that this terminfo
has not been installed yet. However, most things should work with the
`xterm-256color` terminfo:
./foot --term xterm-256color
```sh
./foot --term xterm-256color
```
But, I **recommend** you install the `foot` and `foot-direct` terminfo
files. You can either copy them manually (typically to
`/usr/share/terminfo/f` - but this is dependens on the distro), or
just install everything:
ninja install
```sh
ninja install
```