-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
51 lines (37 loc) · 828 Bytes
/
.vimrc
File metadata and controls
51 lines (37 loc) · 828 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
49
50
" Vim configuration file "
" Keymaps "
inoremap jj <ESC>
nnoremap te :tabedit
set clipboard=unnamed
" enable mouse support "
" set mouse=a "
" enable line numbers "
set number
" enable highlight search pattern "
set hlsearch
" enable smartcase search sensitivity "
set ignorecase
set smartcase
" Tab indentation "
set tabstop =4
set softtabstop =4
set shiftwidth =4
set textwidth =119
set expandtab
set autoindent
" show matching pairs of [] {} and () "
set showmatch
" enable true colors "
set termguicolors
" highlight current line "
set cursorline
" don't have to scroll all the way "
set scrolloff=10
" Update time for better gitgutter "
set updatetime=100
" Vim colorscheme "
syntax enable
set background=dark
colorscheme NeoSolarized
" Transparency matches iTerm2 "
hi Normal guibg=NONE ctermbg=NONE