From 736bab22ec212c81ea005b6ba03affcb68f931c6 Mon Sep 17 00:00:00 2001 From: Michael Campagnaro Date: Wed, 28 Dec 2022 00:48:50 -0500 Subject: [PATCH] Disable some vim plugins --- vimrc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/vimrc b/vimrc index 12ca6a6..a57b9e3 100644 --- a/vimrc +++ b/vimrc @@ -221,16 +221,16 @@ Plug 'dracula/vim', { 'as': 'dracula' } " SYNTAX HIGHLIGHTING "////////////////////////////// -Plug 'tpope/vim-markdown' " Markdown -Plug 'bfrg/vim-cpp-modern' " C/C++ Plug 'rluba/jai.vim' " Jai -Plug 'vim-ruby/vim-ruby' " Ruby -Plug 'fatih/vim-go' " Go -Plug 'rust-lang/rust.vim' " Rust -Plug 'jdonaldson/vaxe' " Haxe -Plug 'pprovost/vim-ps1' " PowerShell +Plug 'bfrg/vim-cpp-modern' " C/C++ Plug 'fedorenchik/fasm.vim' " Flat Assembler Plug 'elixir-editors/vim-elixir' " Elixir +Plug 'pprovost/vim-ps1' " PowerShell +Plug 'tpope/vim-markdown' " Markdown +"Plug 'vim-ruby/vim-ruby' " Ruby +"Plug 'fatih/vim-go' " Go +"Plug 'rust-lang/rust.vim' " Rust +"Plug 'jdonaldson/vaxe' " Haxe "////////////////////////////// @@ -394,7 +394,7 @@ augroup campoCmds autocmd FileType gitcommit setlocal colorcolumn=72 " @flagged for removal. It's a bit annoying. autocmd BufRead,BufNewFile *.{md,txt,plan} exec "setlocal textwidth=".g:campo_max_line_length - " Spell checking. + " Enable spell checking by default. autocmd FileType gitcommit,markdown,text setlocal spell " Jump to last cursor position unless it's invalid or in an event handler.