From 0732e03416a928913c96f6b81ed95c655bf478b3 Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Thu, 22 Oct 2020 10:34:24 -0400 Subject: [PATCH] Update vimrc --- .vimrc | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.vimrc b/.vimrc index 9185de8..1f2a2de 100644 --- a/.vimrc +++ b/.vimrc @@ -1,14 +1,19 @@ set nocompatible set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() +Plugin 'ctrlp.vim' +Plugin 'airblade/vim-gitgutter' Plugin 'VundleVim/Vundle.vim' Plugin 'Valloric/YouCompleteMe' Plugin 'chrisbra/csv.vim' Plugin 'dracula/vim' Bundle 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'} +Plugin 'psf/black' call vundle#end() -" filetype off -filetype plugin indent on + +" Highlight IP Addresses +syn match ipaddr /\(\(25\_[0-5]\|2\_[0-4]\_[0-9]\|\_[01]\?\_[0-9]\_[0-9]\?\)\.\)\{3\}\(25\_[0-5]\|2\_[0-4]\_[0-9]\|\_[01]\?\_[0-9]\_[0-9]\?\)/ +hi link ipaddr Identifier " Theme " color dracula @@ -20,6 +25,8 @@ let g:Powerline_symbols = "fancy" " Turn syntax highlighting on syntax on +" filetype off +filetype plugin indent on " No line wrapping set nowrap " Line numbers @@ -30,8 +37,6 @@ set hlsearch set backspace=2 " Disable swap files (no recovery if you dont save!) set noswapfile -" Set vertical red line at the 80 char column -set colorcolumn=80 " Set tab = 4 spaces set tabstop=4 " Addects >> << ++ and automatic indentation