Skip to content

solareenlo/vim-normfmt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

vim-normfmt

Vim plugin for normfmt

Installation

Use your favorite plugin manager to install this plugin.

vim-plug
  1. Install vim-plug, according to its instructions.
  2. Add the following text to your .vimrc.
    call plug#begin()
      Plug 'solareenlo/vim-normfmt'
    call plug#end()
  3. Restart Vim, and run the :PlugInstall statement to install your plugins.
Vundle.vim
  1. Install Vundle.vim.vim, according to its instructions.
  2. Add the following text to your .vimrc.
    call vundle#begin()
      Plugin 'solareenlo/vim-normfmt'
    call vundle#end()
  3. Restart Vim, and run the :PluginInstall statement to install your plugins.
dein.vim
  1. Install dein.vim, according to its instructions.
  2. Add the following text to your .vimrc.
    call dein#begin()
      call dein#add('solareenlo/vim-normfmt')
    call dein#end()
  3. 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:

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.

Acknowledgement