Disable some vim plugins

This commit is contained in:
Michael Campagnaro 2022-12-28 00:48:50 -05:00
parent 0a7bb3c2a1
commit 736bab22ec

16
vimrc
View File

@ -221,16 +221,16 @@ Plug 'dracula/vim', { 'as': 'dracula' }
" SYNTAX HIGHLIGHTING " SYNTAX HIGHLIGHTING
"////////////////////////////// "//////////////////////////////
Plug 'tpope/vim-markdown' " Markdown
Plug 'bfrg/vim-cpp-modern' " C/C++
Plug 'rluba/jai.vim' " Jai Plug 'rluba/jai.vim' " Jai
Plug 'vim-ruby/vim-ruby' " Ruby Plug 'bfrg/vim-cpp-modern' " C/C++
Plug 'fatih/vim-go' " Go
Plug 'rust-lang/rust.vim' " Rust
Plug 'jdonaldson/vaxe' " Haxe
Plug 'pprovost/vim-ps1' " PowerShell
Plug 'fedorenchik/fasm.vim' " Flat Assembler Plug 'fedorenchik/fasm.vim' " Flat Assembler
Plug 'elixir-editors/vim-elixir' " Elixir 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 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 " @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 autocmd FileType gitcommit,markdown,text setlocal spell
" Jump to last cursor position unless it's invalid or in an event handler. " Jump to last cursor position unless it's invalid or in an event handler.