2024-06-01 21:30:13 +08:00
|
|
|
# myconfig.nvim
|
|
|
|
|
2024-06-02 16:11:58 +08:00
|
|
|
## Font Installation
|
|
|
|
|
|
|
|
Hack Nerd Font installation
|
|
|
|
|
|
|
|
```
|
|
|
|
brew install font-hack-nerd-font
|
|
|
|
```
|
|
|
|
|
2024-06-02 17:27:16 +08:00
|
|
|
|
|
|
|
## Configure python3 for neovim
|
|
|
|
|
|
|
|
```
|
|
|
|
pip install pynvim
|
|
|
|
```
|
|
|
|
|
|
|
|
validate the python3 support with the command:
|
|
|
|
|
|
|
|
```
|
|
|
|
:echo has("python3") # expected return value is 1
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Configuration for latex for neovim
|
|
|
|
|
2024-06-02 17:28:47 +08:00
|
|
|
[A guide to supercharged mathematical typesetting](https://ejmastnak.com/tutorials/vim-latex/intro/)
|