-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
49 lines (37 loc) · 930 Bytes
/
Copy path.vimrc
File metadata and controls
49 lines (37 loc) · 930 Bytes
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
" --------
" PLUGINS
" --------
call plug#begin()
"Auto-Completion
Plug 'https://github.com/ycm-core/YouCompleteMe.git'
"Theme
Plug 'https://github.com/ackyshake/Spacegray.vim.git'
call plug#end()
"-------------------------------------------------------------------------------
" Color Scheme
set background=dark
colorscheme spacegray
" Add number to each line
set number
set numberwidth=1
" Highlight the cursor line
set cursorline
set cursorcolumn
" Use space instead of tabs
set expandtab
" Set tab width to 4 columns
set tabstop=4
" Set shift width to 4 spaces
set shiftwidth=4
" Do not save backup file
set nobackup
" Do not let cursor scroll below or above N number of lines
" when scrolling
set scrolloff=10
" Highlight matching characters as you type while searching
set incsearch
" Highlighting when doing a search
set hlsearch
" Ignore caps during search
set ignorecase
" Custom Commands