-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin_conf
More file actions
67 lines (53 loc) · 1.49 KB
/
plugin_conf
File metadata and controls
67 lines (53 loc) · 1.49 KB
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
" vim:syntax=vim
" Airline
"let g:airline_detect_spell=1
"let g:airline_powerline_fonts=1
"let g:airline_theme = 'tenderplus'
"
"if !exists('g:airline_symbols')
" let g:airline_symbols = {}
"endif
"
"" unicode symbols
"let g:airline_left_sep = '»'
"let g:airline_left_sep = '▶'
"let g:airline_right_sep = '«'
"let g:airline_right_sep = '◀'
"let g:airline_symbols.linenr = '␊'
"let g:airline_symbols.linenr = ''
"let g:airline_symbols.linenr = '¶'
"let g:airline_symbols.branch = '⎇'
"let g:airline_symbols.paste = 'ρ'
"let g:airline_symbols.paste = 'Þ'
"let g:airline_symbols.paste = '∥'
"let g:airline_symbols.whitespace = 'Ξ'
"
"" airline symbols
"let g:airline_left_sep = ''
"let g:airline_left_alt_sep = ''
"let g:airline_right_sep = ''
"let g:airline_right_alt_sep = ''
"let g:airline_symbols.branch = ''
"let g:airline_symbols.readonly = ''
"let g:airline_symbols.linenr = ''
" }}}
" Lightline
let g:lightline = { 'colorscheme': 'onehalfdark' }
set laststatus=2
set noshowmode
" NERDTree
let NERDTreeChDirMode=2
noremap <Leader>nt :NERDTreeToggle<CR>
" Gundo.vim
nnoremap <leader>u :GundoToggle<CR>
" Ack.vim
let g:ackprg = 'ag --vimgrep'
" CtrlP
" let g:ctrlp_match_window = 'bottom,order:ttb'
" let g:ctrlp_switch_buffer = 0
" let g:ctrlp_working_path_mode = 0
" let g:ctrlp_user_command = 'ag %s -l --nocolor --hidden -g ""'
" thesaurus_query.vim
let g:tq_openoffice_en_file='/usr/share/mythes/th_en_GB_v2'
" fugitive.vim
nnoremap <Leader>gs :Gstatus<CR>