Update vimrc

This commit is contained in:
Evan Reichard 2020-10-22 10:34:24 -04:00
parent cccff807d8
commit 0732e03416

13
.vimrc
View File

@ -1,14 +1,19 @@
set nocompatible set nocompatible
set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin() call vundle#begin()
Plugin 'ctrlp.vim'
Plugin 'airblade/vim-gitgutter'
Plugin 'VundleVim/Vundle.vim' Plugin 'VundleVim/Vundle.vim'
Plugin 'Valloric/YouCompleteMe' Plugin 'Valloric/YouCompleteMe'
Plugin 'chrisbra/csv.vim' Plugin 'chrisbra/csv.vim'
Plugin 'dracula/vim' Plugin 'dracula/vim'
Bundle 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'} Bundle 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
Plugin 'psf/black'
call vundle#end() 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 " Theme
" color dracula " color dracula
@ -20,6 +25,8 @@ let g:Powerline_symbols = "fancy"
" Turn syntax highlighting on " Turn syntax highlighting on
syntax on syntax on
" filetype off
filetype plugin indent on
" No line wrapping " No line wrapping
set nowrap set nowrap
" Line numbers " Line numbers
@ -30,8 +37,6 @@ set hlsearch
set backspace=2 set backspace=2
" Disable swap files (no recovery if you dont save!) " Disable swap files (no recovery if you dont save!)
set noswapfile set noswapfile
" Set vertical red line at the 80 char column
set colorcolumn=80
" Set tab = 4 spaces " Set tab = 4 spaces
set tabstop=4 set tabstop=4
" Addects >> << ++ and automatic indentation " Addects >> << ++ and automatic indentation