https://github.com/augustunderground/vim-mathmode
Vim Plugin for inserting math symbols based on Luke Smith's vimling (https://gitlab.com/LukeSmithxyz/vimling).
https://github.com/augustunderground/vim-mathmode
vim-plugin
Last synced: 4 months ago
JSON representation
Vim Plugin for inserting math symbols based on Luke Smith's vimling (https://gitlab.com/LukeSmithxyz/vimling).
- Host: GitHub
- URL: https://github.com/augustunderground/vim-mathmode
- Owner: AugustUnderground
- Created: 2020-04-25T08:50:25.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-27T09:24:41.000Z (about 5 years ago)
- Last Synced: 2025-09-09T12:53:50.756Z (9 months ago)
- Topics: vim-plugin
- Language: Vim script
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Math Mode for Vim
Plugin based on [Luke Smith's IPA vimling plugin](https://gitlab.com/LukeSmithxyz/vimling)
for inserting Latex style math characters in vim.
## Installation
Install with your favorite Plugin Manager.
For [Vim Plug](https://github.com/junegunn/vim-plug) put the following in your `.vimrc` or `init.vim`
```
Plug 'augustunderground/vim-mathmode'
```
## Configuration
Map a key to the `Toggle_math_mode` function. For example `$`, because this is
how math mode is started in Latex:
```
map $ :call Toggle_math_mode()a
```
By default `` is mapped to `\`, so after hitting `\` `$` you're able to insert
math symbols and Greek letters by typing `\lambda` for example.