-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
20 lines (18 loc) · 809 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
colorscheme badwolf " awesome colorscheme
" Spacing
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in tab when editing
"set expandtab " tabs are spaces
set autoindent
set noexpandtab
" UI Config
set number " show line numbers
set cursorline " highlight current line
set lazyredraw " redraw only when we need to.
set showmatch " highlight matching [{()}]
" Searching
set incsearch " search as characters are entered
" set hlsearch " highlight matches
" turn off search highlight
" nnoremap <leader><space> :nohlsearch<CR>
highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE