vim

vim config files
git clone https://git.bracken.jp/vim.git
Log | Files | Refs | LICENSE

commit 2b02e3cc58ca6048767d1daf90914ae19d761db3
parent cb447c5c01ed8515eea42e533c459a4f1f8076ed
Author: Chris Bracken <chris@bracken.jp>
Date:   Mon,  9 Oct 2023 11:24:22 -0700

Eliminate filetype wrangling

Vundle required the user to turn filetype off before loading plugins,
then back on again (if desired) after loading plugins, but vim-plug does
this automatically. This removes the extraneous calls.

Diffstat:
Mvimrc | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/vimrc b/vimrc @@ -6,7 +6,6 @@ if has("autocmd") autocmd! endif -filetype off call plug#begin('~/.vim/plugged') Plug 'rhysd/vim-clang-format' " clang-format. Plug 'vim-scripts/spacehi.vim' " Highlight bad whitespace. @@ -21,7 +20,6 @@ Plug 'keith/swift.vim' Plug 'rust-lang/rust.vim' Plug 'https://gn.googlesource.com/gn', { 'rtp': 'misc/vim' } call plug#end() -filetype plugin indent on " Bind fancier manpage plugin to Shift-k. runtime ftplugin/man.vim