blob: 7173d610c3644ef37625ebabf7fadee9f06a9dfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Ligature and Unicode substitution
These features are supported in {neo,}vim only.
### Installation
Copy the required vim plugins to
- `~/.vim/after/syntax/` (vim)
- `~/.config/nvim/after/syntax/` (neovim)
```shell
# the rust plugin for example:
mkdir -p ~/.vim/after/syntax
cp ligature_plugins/rust.vim ~/.vim/after/syntax/
```
If you have `set conceallevel=0` if your `vimrc`, remove it.
Big thanks to [romeovs](https://github.com/romeovs/) for
creating the haskell plugin and the idea of ligatures via
conceals.
|