-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeprecated.vim
More file actions
87 lines (83 loc) · 3.19 KB
/
Copy pathdeprecated.vim
File metadata and controls
87 lines (83 loc) · 3.19 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
"========================================}{
"Integration
"========================================}{
" tmux pane for commands
"Plugin 'benmills/vimux'
" " Run the current file with rspec
" map <Leader>rb :call VimuxRunCommand("clear; rspec " . bufname("%"))<CR>
" " Prompt for a command to run
" map <Leader>vp :VimuxPromptCommand<CR>
" " Run last command executed by VimuxRunCommand
" map <Leader>vl :VimuxRunLastCommand<CR> " Inspect runner pane
" map <Leader>vi :VimuxInspectRunner<CR>
" " Close vim tmux runner opened by VimuxRunCommand
" map <Leader>vq :VimuxCloseRunner<CR>
" " Interrupt any command running in the runner pane
" map <Leader>vx :VimuxInterruptRunner<CR>
" " Zoom the runner pane (use <bind-key> z to restore runner pane)
" map <Leader>vz :call VimuxZoomRunner()<CR>
"========================================}{
"dash -- cause error when sudo vim, stop using
"Plugin 'rizzatti/funcoo.vim'
"Plugin 'rizzatti/dash.vim'
"Plugin 'rizzatti/greper.vim'
"========================================}{
" run buffer with #! as a script
" Plugin 'bexec'
"========================================}{
"Plugin 'EasyGrep'
"Plugin 'rking/ag.vim'
"let g:agprg='<custom-ag-path-goes-here> --column'
"Plugin 'mileszs/ack.vim'
"let g:ackprg = 'ag --nogroup --nocolor --column'
"nnoremap <Leader>ag :Ack -U -G
"set grepprg=ag\ --vimgrep\ $*
"set grepformat=%f:%l:%c:%m
"========================================}{
" Language
"========================================}{
" Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} "yet another zen
"========================================}{
" Deprecated due to performance on big php file
"Plugin 'vim-php/tagbar-phpctags.vim'
"let g:tagbar_phpctags_bin='/usr/local/bin/phpctags'
"let g:tagbar_phpctags_memory_limit = '128M'
"========================================}{
" Completion
"========================================}{
"Plugin 'snipMate'
"Plugin AutoComplPop
"Plugin 'matthias-guenther/vim-autocomplete'
"Plugin 'Valloric/YouCompleteMe'
"========================================}{
" Interface
"========================================}{
"Plugin 'Shougo/unite.vim'
"========================================}{
" Commands
"========================================}{
" CtrlP has MRU
"Plugin 'yegappan/mru'
"nnoremap <silent> <D-r> :MRU<CR>
"========================================}{
" Uncategoried
"========================================}{
" VimWiki
Plugin 'vimwiki'
map <F8> <Plug>Vimwiki2HTML<CR>
map <M-F8> <Plug>VimwikiAll2HTML<CR>
let g:vimwiki_use_mouse = 1
let wiki_1 = {}
let wiki_1.path = 'E:/Profiles/Documents/VimWiki/gwiki/'
let wiki_1.path_html = 'E:/Profiles/Documents/VimWiki/gwiki/html/'
"let wiki_1.html_header = 'E:/Profiles/Documents/VimWiki/gwiki/template/header.tpl'
let wiki_1.html_template = 'E:/Profiles/Documents/VimWiki/gwiki/template/tmpl.html'
"let wiki_1.nested_syntaxes = {'python': 'python', 'c++': 'cpp'}
let wiki_2 = {}
let wiki_2.syntax = 'markdown'
let wiki_2.ext = '.mkd'
let wiki_2.custom_wiki2html = 'E:\programs\dev\Vim\vimfiles\bundle\vimwiki.dev\autoload\vimwiki\customwiki2html.bat'
let wiki_2.path = 'E:/Profiles/Documents/VimWiki/mkd/'
let wiki_2.path_html = 'E:/Profiles/Documents/VimWiki/mkd/html/'
let g:vimwiki_list = [wiki_1, wiki_2]
"========================================}{