vim-sqlfmt icon indicating copy to clipboard operation
vim-sqlfmt copied to clipboard

A plugin for SQL formatter like gofmt

vim-sqlfmt

A plugin for SQL formatter like gofmt

Installation

With vim-plug,

Plug 'b4b4r07/vim-sqlfmt'

Requirement:

Available plugins Paste on your .vimrc
jackc/sqlfmt
let g:sqlfmt_command = "sqlfmt"
let g:sqlfmt_options = ""
andialbrecht/sqlparse
let g:sqlfmt_command = "sqlformat"
let g:sqlfmt_options = "-r -k upper"
... ...

Usage

Run :w to format automatically. If you set g:sqlfmt_auto to 0, this behavior will be disabled.

It can also be executed directly as follows:

:SQLFmt [files...]

License

MIT

Author

b4b4r07