Last active
August 7, 2019 17:30
-
-
Save mark-d-holmberg/983967 to your computer and use it in GitHub Desktop.
My .vimrc Config File for ViM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nowrap | |
set nu | |
set cindent | |
set ts=2 | |
set shiftwidth=2 | |
set autowrite | |
hi Search ctermbg=6 guibg=LightBlue | |
set hlsearch | |
" set noexpandtab | |
set expandtab | |
syntax on | |
highlight ExtraWhitespace ctermbg=red guibg=red | |
autocmd Syntax * syn match ExtraWhitespace /\s\+$\| \+\ze\t/ containedin=ALL | |
set nocompatible | |
set foldenable | |
set foldmethod=marker | |
set nolist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment