mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
18 lines
456 B
VimL
18 lines
456 B
VimL
" Neoformat
|
|
" https://github.com/sbdchd/neoformat
|
|
|
|
" Settings
|
|
let g:neoformat_try_node_exe = 1
|
|
let g:neoformat_basic_format_align = 1 " Enable alignment
|
|
let g:neoformat_basic_format_retab = 1 " Enable tab to spaces conversion
|
|
let g:neoformat_basic_format_trim = 1 " Enable trimmming of trailing whitespace
|
|
|
|
" Mappings
|
|
nnoremap <silent> nf <cmd>Neoformat<CR>
|
|
|
|
" Auto Commands
|
|
augroup fmt
|
|
autocmd!
|
|
autocmd BufWritePre * undojoin | Neoformat
|
|
augroup END
|