highlight search, bad white spaces, and more

This commit is contained in:
2024-06-12 09:46:37 -07:00
parent 8d4b035e2b
commit eb05af3573

17
.vimrc
View File

@@ -2,8 +2,11 @@ set nocompatible
syntax on syntax on
filetype plugin on filetype plugin on
set path+=** set path+=**
set wildmenu set wildmenu
set showcmd
set wildmode=longest:full,full
set wildoptions=pum
set wildignore+=*/tmp/*,*.so,*.swp,*.zip set wildignore+=*/tmp/*,*.so,*.swp,*.zip
set wildignore+=*\\tmp\\*,*.exe set wildignore+=*\\tmp\\*,*.exe
@@ -14,7 +17,19 @@ set ruler
set wrap set wrap
set showbreak=↳\ \ set showbreak=↳\ \
set textwidth=79 set textwidth=79
set hidden
set backspace=indent,eol,start
set hlsearch
" Rendering
set ttyfast
set laststatus=1
set t_Co=256
set background=dark
set colorcolumn=81 set colorcolumn=81
hi ColorColumn ctermbg=lightgrey guibg=lightgrey
" Show bad whitespace in an obvious but not obnoxious color " Show bad whitespace in an obvious but not obnoxious color
highlight pythonSpaceError ctermbg=darkgreen guibg=darkgreen highlight pythonSpaceError ctermbg=darkgreen guibg=darkgreen