-
Notifications
You must be signed in to change notification settings - Fork 4
/
dot-vimrc
49 lines (36 loc) · 795 Bytes
/
dot-vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
" ~/.vimrc
"colorscheme desert
"colorscheme delek
colorscheme torte
"colorscheme slate
syntax on
set ruler
set autoindent smartindent
set smarttab
set wrap linebreak
" Highlight things that we find with the search
set hlsearch
" Set off the other parens
highlight MatchParen ctermbg=4
" Show matching brackets
set showmatch
" Remove Toolbar
set guioptions-=T
" Do not wrap long lines
set nowrap
" Line Numbers
set number
" Highlight current line
set cursorline
" Highlight current column
"set cursorcolumn
" Tab Stops
set tabstop=4
set shiftwidth=4
" Make backspace work properly
set backspace=indent,eol,start
" Semicolon isn't really useful. Map it to Colon & save having to hit Shift, too
nnoremap ; :
filetype plugin indent on
" Clear last search term
map <F3> :let @/ = ""<CR>