vim: add autoformat plugin

This commit is contained in:
Julian Mutter 2022-08-24 16:23:55 +02:00
parent 51985d6a7c
commit 7e37870ce6

View File

@ -31,13 +31,15 @@ endif
let mapleader = " " let mapleader = " "
" Plugins " Plugins
" call plug#begin('~/.vim/plugged') call plug#begin()
" Plug 'itchyny/lightline.vim' " Plug 'itchyny/lightline.vim'
" Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } " Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
" Plug 'Valloric/YouCompleteMe' " Plug 'Valloric/YouCompleteMe'
" Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']} " Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']}
" Plug 'https://github.com/ap/vim-css-color.git' Plug 'https://github.com/ap/vim-css-color.git'
Plug 'vim-autoformat/vim-autoformat'
" Collection of common configurations for the Nvim LSP client " Collection of common configurations for the Nvim LSP client
" Plug 'neovim/nvim-lspconfig' " Plug 'neovim/nvim-lspconfig'
@ -57,7 +59,7 @@ let mapleader = " "
" Plug 'tpope/vim-commentary' " Plug 'tpope/vim-commentary'
" call plug#end() call plug#end()
"------------------------------------------------------------ "------------------------------------------------------------
" Must have options {{{1 " Must have options {{{1