An open API service indexing awesome lists of open source software.

https://github.com/solareenlo/vim-normfmt

Vim plugin for normfmt
https://github.com/solareenlo/vim-normfmt

42 42born2code 42cursus norm norminette vim vim-plugin

Last synced: 4 months ago
JSON representation

Vim plugin for normfmt

Awesome Lists containing this project

README

        

# vim-normfmt
Vim plugin for [normfmt](https://github.com/solareenlo/normfmt)

## Installation
Use your favorite plugin manager to install this plugin.

vim-plug

1. Install [vim-plug](https://github.com/junegunn/vim-plug), according to its instructions.
1. Add the following text to your `.vimrc`.
```vim
call plug#begin()
Plug 'solareenlo/vim-normfmt'
call plug#end()
```
1. Restart Vim, and run the `:PlugInstall` statement to install your plugins.

Vundle.vim

1. Install [Vundle.vim](https://github.com/VundleVim/Vundle.vim).vim, according to its instructions.
1. Add the following text to your `.vimrc`.
```vim
call vundle#begin()
Plugin 'solareenlo/vim-normfmt'
call vundle#end()
```
1. Restart Vim, and run the `:PluginInstall` statement to install your plugins.

dein.vim

1. Install [dein.vim](https://github.com/Shougo/dein.vim), according to its instructions.
1. Add the following text to your `.vimrc`.
```vim
call dein#begin()
call dein#add('solareenlo/vim-normfmt')
call dein#end()
```
1. Restart Vim, and run the `:call dein#install()` statement to install your plugins.

Vim 8 + packages

If you are using Vim version 8 or higher you can use its built-in package management;
see `:help packages` for more information.
Just run these commands in your terminal:

```bash
git clone https://github.com/solareenlo/vim-normfmt.git ~/.vim/solareenlo/start/vim-normfmt
vim -u NONE -c "helptags ~/.vim/solareenlo/start/vim-normfmt/doc" -c q
```

## License
This project is published under the terms of **[MIT](LICENSE)**.

## Acknowledgement
- [cacharle/c_formatter_42.vim](https://github.com/cacharle/c_formatter_42.vim)