Changes to .vimrc. Added cursorline and better search features.

develop
Nathan Steel 6 years ago
parent bf3d88d619
commit c8770c2673

@ -1,7 +1,12 @@
" Vim settings " Vim settings
set tabstop =4 set tabstop =4 " The amount of spaces per tab
syntax on syntax on " Syntax highlighting
set number set number " Line numbers
set cursorline " Shows a line on the cursor's line
" Fancy colorColumn " Search settings
set incsearch " Search as characters are entered
set hlsearch " Highlight all matches
" Changes colorcolumn per line that hits 81 characters
call matchadd('ColorColumn', '\%81v', 100) call matchadd('ColorColumn', '\%81v', 100)

Loading…
Cancel
Save