-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
54 lines (40 loc) · 994 Bytes
/
.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
50
51
52
53
54
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'toupeira/vim-desertink'
Plugin 'pangloss/vim-javascript'
Plugin 'groenewege/vim-less'
call vundle#end()
set tabstop=4
set shiftwidth=4
set number
set cursorline
set undolevels=1000
" hide buffers instead of closing them
set hidden
" interactive autocomplete
set wildmenu
" vcs instead
set nobackup
set nowritebackup
set noswapfile
" search: no case, incremental, highlight
set ignorecase
set smartcase
set incsearch
set hlsearch
" respect modelines
set modeline
" make arrows/hl wrap at line beginning/end
set whichwrap+=<,>,h,l
" netrw improvements
let g:netrw_liststyle=3
let g:netrw_banner=0
let g:netrw_browse_split=3
colorscheme desertink
" filetype-based autoindent
filetype plugin indent on
" less invasive matching paren
hi MatchParen term=bold,underline cterm=bold,underline gui=bold,underline ctermbg=none guibg=NONE
" yank to + register (X clipboard)
set clipboard=unnamedplus