-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathyour.vim
33 lines (26 loc) · 798 Bytes
/
your.vim
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
""""""""""""""""""""""""""""""""""""""""""""""""""
" My .vimrc
"
" Inspired by:
" https://github.com/theshteves/vim-workshop
"
""""""""""""""""""""""""""""""""""""""""""""""""""
" Enable syntax highlighting
syntax on
" Line numbers... everywhere...
set number
" Prints current cursor position on status line
set ruler
" Highlight search results
set hlsearch
" Make backspace WORK like you'd expect
set backspace=indent,eol,start
" Set this NECESSARY theme (Kneiser's DOPE theme *trademarked*)
set background=light
" Ignores capital-typos when you want to write/quit
" Not many people about this but you'll definitely thank me
" Inspired by: http://alexander-hill.tumblr.com/post/78142366738/how-to-fix-the-capital-w-annoyance-in-vim
:command WQ wq
:command Wq wq
:command W w
:command Q q