-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
48 lines (41 loc) · 1.05 KB
/
.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
""" VIM CONFIG """
""""""""""""""""""""""""""""""
" General
""""""""""""""""""""""""""""""
set nocompatible
set number " line numbers
set ruler " line/column display
set backspace=indent,eol,start
""""""""""""""""""""""""""""""
" Formatting/Layout
""""""""""""""""""""""""""""""
set tabstop=4
set expandtab " change tabs to spaces
set shiftwidth=4
set smarttab
set autoindent
set smartindent
set nowrap " don't wrap lines
""""""""""""""""""""""""""""""
" Colors
""""""""""""""""""""""""""""""
set background=dark
syntax on " syntax highlighting
""""""""""""""""""""""""""""""
" Files/Backups
""""""""""""""""""""""""""""""
set nobackup
set noswapfile
""""""""""""""""""""""""""""""
" Miscellaneous
""""""""""""""""""""""""""""""
set ignorecase " ignore case while searching
set smartcase " ignore case only when search pattern is all lowercase
set hlsearch " highlight search terms
set incsearch " do incremental searches
set pastetoggle=<F2>
""""""""""""""""""""""""""""""
" Annoyances
""""""""""""""""""""""""""""""
set novisualbell
set noerrorbells