-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
81 lines (68 loc) · 2.6 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
so ~/.vim/vim/import.vim
let g:bundle_group = ['basic']
call add(g:bundle_group, 'fantasic')
call add(g:bundle_group, 'git')
call add(g:bundle_group, 'nerdtree')
call add(g:bundle_group, 'rainbow')
call add(g:bundle_group, 'tagbar')
call add(g:bundle_group, 'airline')
call add(g:bundle_group, 'themes')
call add(g:bundle_group, 'terminus')
call add(g:bundle_group, 'tags')
call add(g:bundle_group, 'ale')
call add(g:bundle_group, 'coc')
call add(g:bundle_group, 'repl')
"call add(g:bundle_group, 'deoplete')
"call add(g:bundle_group, 'try')
call add(g:bundle_group, 'cpp')
call add(g:bundle_group, 'rust')
call add(g:bundle_group, 'julia')
"call add(g:bundle_group, 'python')
"call add(g:bundle_group, 'golang')
call add(g:bundle_group, 'haskell')
call add(g:bundle_group, 'markdown')
"call add(g:bundle_group, 'markdown-preview')
so ~/.vim/vim/bundle.vim
" color scheme
if has('termguicolors')
set termguicolors
endif
if exists('$TMUX')
" hack to make vim work well in tmux
let &t_8f = "\<Esc>[38:2:%lu:%lu:%lum"
let &t_8b = "\<Esc>[48:2:%lu:%lu:%lum"
set t_Co=256
" add the line below to .tmux.conf file
" set-option -ga terminal-overrides ",screen-256color:Tc"
endif
if &term =~? '256color'
" disable Background Color Erase (BCE) so that color schemes
" render properly when inside 256-color tmux and GNU screen.
" see also http://snk.tuxfamily.org/log/vim-256color-bce.html
set t_ut=
endif
" default value is "normal", Setting this option to "high" or "low" does use the
" same Solarized palette but simply shifts some values up or down in order to
" expand or compress the tonal range displayed.
let g:neosolarized_contrast = 'high'
" Special characters such as trailing whitespace, tabs, newlines, when displayed
" using ":set list" can be set to one of three levels depending on your needs.
" Default value is "normal". Provide "high" and "low" options.
let g:neosolarized_visibility = 'low'
" I make vertSplitBar a transparent background color. If you like the origin solarized vertSplitBar
" style more, set this value to 0.
let g:neosolarized_vertSplitBgTrans = 1
" If you wish to enable/disable NeoSolarized from displaying bold, underlined or italicized
" typefaces, simply assign 1 or 0 to the appropriate variable. Default values:
let g:neosolarized_bold = 1
let g:neosolarized_underline = 1
let g:neosolarized_italic = 0
set background=dark
colorscheme NeoSolarized
if index(g:bundle_group, 'airline') >= 0
let g:airline_theme='luna'
" tabline
let g:airline#extensions#tabline#enabled=1
let g:airline#extensions#tabline#buffer_nr_show=1
let g:airline#extensions#tabline#buffer_nr_format='%s:'
endif