Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/patriciogonzalezvivo/vim-glslviewer
Vim pluging for glslViewer which allow you to live-code shaders from your RaspberryPi
https://github.com/patriciogonzalezvivo/vim-glslviewer
Last synced: about 1 month ago
JSON representation
Vim pluging for glslViewer which allow you to live-code shaders from your RaspberryPi
- Host: GitHub
- URL: https://github.com/patriciogonzalezvivo/vim-glslviewer
- Owner: patriciogonzalezvivo
- License: mit
- Created: 2015-04-29T20:15:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-30T17:19:57.000Z (over 9 years ago)
- Last Synced: 2024-04-14T22:29:30.109Z (7 months ago)
- Language: VimL
- Size: 117 KB
- Stars: 13
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GLSL Viewer plugin for Vim
Vim plugin for live-coding GLSL Shaders using glslViewer on RaspberryPi
[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4BQMKQJDQ9XH6)
## Installation
* Install [glslViewer](https://github.com/patriciogonzalezvivo/glslViewer)```bash
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install libfreeimage-dev
cd ~
git clone http://github.com/patriciogonzalezvivo/glslViewer
cd glslViewer
make
sudo make install
```* Install [Pathogen](http://www.vim.org/scripts/script.php?script_id=2332)
```bash
mkdir -p ~/.vim/autoload ~/.vim/bundle && curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
```And add this to the beginning of ```~/.vimrc```
```
execute pathogen#infect()
```* Clone this repository on the ```bundle/``` folder. For example:
```bash
cd ~/.vim/bundle
git clone https://github.com/patriciogonzalezvivo/vim-glslViewer.git
```## Usage
Every time you open a ```.frag``` or ```.fs``` file it will render it through ```glslViewer``` which will reload the shader every time you save it ;)
## Author
[Patricio Gonzalez Vivo](http://https://twitter.com/patriciogv): [github](https://github.com/patriciogonzalezvivo) | [twitter](http://https://twitter.com/patriciogv) | [website](http://patricio.io)