Experimenting with line wrap settings. Already too annoying for rst

This commit is contained in:
Alex Kelly 2019-02-03 12:27:30 -05:00
parent 987ec741b2
commit c512a473ea

View file

@ -51,6 +51,7 @@ Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown' Plugin 'plasticboy/vim-markdown'
Plugin 'fatih/vim-go' Plugin 'fatih/vim-go'
Plugin 'dbeniamine/cheat.sh-vim' Plugin 'dbeniamine/cheat.sh-vim'
Plugin 'jacqueswww/vim-vyper'
"let g:deoplete#enable_at_startup = 1 "let g:deoplete#enable_at_startup = 1
"Plugin 'Shougo/deoplete.nvim' "Plugin 'Shougo/deoplete.nvim'
@ -80,6 +81,7 @@ set shiftwidth=4
set smarttab set smarttab
set softtabstop=4 set softtabstop=4
set autoindent set autoindent
set expandtab
let &colorcolumn="80,".join(range(81,999),",") let &colorcolumn="80,".join(range(81,999),",")
augroup vimrc_autocmds augroup vimrc_autocmds
@ -88,6 +90,8 @@ augroup vimrc_autocmds
autocmd FileType python highlight Excess ctermbg=DarkGrey guibg=Black autocmd FileType python highlight Excess ctermbg=DarkGrey guibg=Black
autocmd FileType python match Excess /\%80v.*/ autocmd FileType python match Excess /\%80v.*/
autocmd FileType python set nowrap autocmd FileType python set nowrap
" autocmd FileType rst set textwidth=80
autocmd FileType markdown set textwidth=80
augroup END augroup END
set mouse=a set mouse=a