From c512a473ea7342e20bc27403a3efd69dbf9a6964 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Sun, 3 Feb 2019 12:27:30 -0500 Subject: [PATCH] Experimenting with line wrap settings. Already too annoying for rst --- vim/vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index 9c0d499..fe617f3 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -51,6 +51,7 @@ Plugin 'godlygeek/tabular' Plugin 'plasticboy/vim-markdown' Plugin 'fatih/vim-go' Plugin 'dbeniamine/cheat.sh-vim' +Plugin 'jacqueswww/vim-vyper' "let g:deoplete#enable_at_startup = 1 "Plugin 'Shougo/deoplete.nvim' @@ -80,6 +81,7 @@ set shiftwidth=4 set smarttab set softtabstop=4 set autoindent +set expandtab let &colorcolumn="80,".join(range(81,999),",") augroup vimrc_autocmds @@ -88,6 +90,8 @@ augroup vimrc_autocmds autocmd FileType python highlight Excess ctermbg=DarkGrey guibg=Black autocmd FileType python match Excess /\%80v.*/ autocmd FileType python set nowrap +" autocmd FileType rst set textwidth=80 + autocmd FileType markdown set textwidth=80 augroup END set mouse=a