-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.vimrc.before
executable file
·54 lines (43 loc) · 1.2 KB
/
.vimrc.before
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
syntax enable
" Change the leader key to ','
let mapleader=","
" Use the default clipboard
set clipboard=unnamed
" Disable unused plugins
call janus#disable_plugin('gui_settings')
call janus#disable_plugin('supertab')
call janus#disable_plugin('multiple-cursors')
" call janus#disable_plugin('nerdtree')
call janus#disable_plugin('syntastic')
" Make gists private
let g:gist_post_private = 1
" Turn on all python syntax highlighting features
let g:python_highlight_all = 1
let g:python_version_2 = 1
" Airline
let g:airline#extensions#tabline#enabled = 1
let g:airline_detect_paste = 1
let g:airline_detect_crypt = 1
let g:airline_detect_spell = 1
let g:airline_inactive_collapse = 1
" let g:airline_theme = 'onedark'
" let g:airline_theme = 'oceanicnext'
let g:airline_skip_empty_sections = 1
if $GOTTY_TERM == '1'
let g:airline_theme = 'onedark'
else
let g:airline_powerline_fonts = 1
let g:airline_theme = 'base16_spacemacs'
endif
if !exists('g:airline_symbols')
let g:airline_symbols = {}
endif
let g:airline_symbols.linenr = '¶'
let g:airline_symbols.spell = 'Ꞩ'
" Vimwiki
let g:vimwiki_list = [{
\ 'path': $NOTES . '/',
\ 'path_html': $NOTES . '/html/',
\ 'index': 'index',
\ 'ext': '.md'
\ }]