Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arnoudbuzing/wolfram-vim
Wolfram Language syntax coloring file for VIM
https://github.com/arnoudbuzing/wolfram-vim
vim vim-colorscheme wolfram wolfram-language wolfram-mathematica
Last synced: 3 months ago
JSON representation
Wolfram Language syntax coloring file for VIM
- Host: GitHub
- URL: https://github.com/arnoudbuzing/wolfram-vim
- Owner: arnoudbuzing
- Created: 2018-05-08T13:24:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-11T13:52:40.000Z (about 5 years ago)
- Last Synced: 2024-07-18T22:18:16.761Z (4 months ago)
- Topics: vim, vim-colorscheme, wolfram, wolfram-language, wolfram-mathematica
- Language: Vim script
- Size: 53.7 KB
- Stars: 26
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-wolfram-language - wolfram-vim
README
# wolfram-vim
Wolfram Language syntax coloring file for VimInstallation:
```
git clone [email protected]:arnoudbuzing/wolfram-vim.git
```(Or via https: `git clone https://github.com/arnoudbuzing/wolfram-vim.git`)
and then copy `syntax/wl.vim` to `~/.vim/syntax/wl.vim` (or `$HOME/vimfiles/syntax/wl.vim` on Windows)
Enable in Vim
```
set syntax=wl
```Enable automatically when Vim is started, add the following to `~/.vimrc`:
```
autocmd BufNewFile,BufRead *.wl set syntax=wl
autocmd BufNewFile,BufRead *.wls set syntax=wl
autocmd BufNewFile,BufRead *.m set syntax=wl
```