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
- Host: GitHub
- URL: https://github.com/solareenlo/vim-normfmt
- Owner: solareenlo
- License: mit
- Created: 2021-11-08T01:59:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-08T05:15:51.000Z (over 3 years ago)
- Last Synced: 2024-12-30T09:15:25.825Z (5 months ago)
- Topics: 42, 42born2code, 42cursus, norm, norminette, vim, vim-plugin
- Language: Vim script
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)