mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-07 18:15:11 +01:00
Compare commits
10 Commits
28cdfe7d3a
...
vimreorg
| Author | SHA1 | Date | |
|---|---|---|---|
| b4305f1131 | |||
| 4839507e05 | |||
| f8ea1fe55f | |||
| 00c670d0e1 | |||
| b0b09d49c8 | |||
| 8111aaf0ad | |||
| f8f695ac64 | |||
| 1508e83271 | |||
| a9d443755a | |||
| 1b52b1ed7f |
@@ -27,6 +27,11 @@ set -U grcplugin_ls --color
|
||||
if test -x ~/.local/bin
|
||||
set PATH $PATH ~/.local/bin
|
||||
end
|
||||
# Local Rust apps installed through cargo
|
||||
if test -x ~/.cargo/bin
|
||||
set PATH $PATH ~/.cargo/bin
|
||||
end
|
||||
# Scripts from my dotfiles repo
|
||||
if test -x ~/.dot/dotfiles/bin
|
||||
set PATH $PATH ~/.dot/dotfiles/bin
|
||||
end
|
||||
|
||||
@@ -169,3 +169,9 @@ Wii
|
||||
gymkleding
|
||||
kutweer
|
||||
whoa
|
||||
bistrokrieltjes
|
||||
dumbbells
|
||||
naproxen
|
||||
nerden
|
||||
E-depot
|
||||
Carcassonne
|
||||
|
||||
50
.vimrc
50
.vimrc
@@ -432,30 +432,15 @@ Plug 'skanehira/preview-markdown.vim'
|
||||
let g:preview_markdown_vertical = 1
|
||||
|
||||
" Navigate through and from markdown files
|
||||
"Plug 'chmp/mdnav'
|
||||
Plug 'aquatix/mdnav', { 'branch': 'fixes' }
|
||||
" Only open these local files in vim, use pyfile for all others:
|
||||
let g:mdnav#Extensions = '.md, .MD, .markdown, .todo, .txt, .rst'
|
||||
" let g:mdnav#DebugMode = 'true'
|
||||
|
||||
|
||||
" wiki.vim
|
||||
Plug 'lervag/wiki.vim'
|
||||
" let g:wiki_root = '~/wiki'
|
||||
let g:wiki_root = '~/phren'
|
||||
let g:wiki_filetypes = ['md']
|
||||
let g:wiki_link_extension = '.md'
|
||||
let g:wiki_link_target_type = 'md'
|
||||
" let g:wiki_mappings_use_defaults = 1
|
||||
"support for #tag style tags instead of :tag:
|
||||
let g:wiki_tags_format_pattern = '\v%(^|\s)#\zs[^# ]+'
|
||||
" number of lines from the top to scan for tags
|
||||
let g:wiki_tags_scan_num_lines = 500
|
||||
" search through the tags in the wiki
|
||||
nmap <leader>wf :WikiFzfTags <CR>
|
||||
" find backlinks to this document
|
||||
nmap <leader>wb :WikiGraphFindBacklinks <CR>
|
||||
" find in ToC/structure of the (markdown) file
|
||||
nmap <leader>ft :WikiFzfToc <CR>
|
||||
" Config below, after plug#end()
|
||||
|
||||
|
||||
if $USER != 'root'
|
||||
@@ -533,6 +518,37 @@ nmap <leader>V :Goyo <bar> :Limelight!! <bar> :TogglePencil <CR>
|
||||
|
||||
" All of the plugins must be added before the following line
|
||||
call plug#end()
|
||||
|
||||
|
||||
" wiki.vim config
|
||||
let g:wiki_root = '~/phren'
|
||||
let g:wiki_filetypes = ['md']
|
||||
let g:wiki_link_extension = '.md'
|
||||
let g:wiki_link_target_type = 'md'
|
||||
" let g:wiki_mappings_use_defaults = 1
|
||||
"support for #tag style tags instead of :tag: (hashes instead of colons)
|
||||
runtime autoload/wiki/tags.vim
|
||||
let s:tag_parser = deepcopy(g:wiki#tags#default_parser)
|
||||
let s:tag_parser.re_match = '\v%(^|\s)#\zs[^# ]+'
|
||||
let s:tag_parser.re_findstart = '\v%(^|\s)#\zs[^# ]+'
|
||||
|
||||
"let g:wiki_tags_format_pattern = '\v%(^|\s)#\zs[^# ]+'
|
||||
" parse tags in lines that match "tags: keyword1, keyword2" in addition to the default parser:
|
||||
let g:wiki_tag_parsers = [
|
||||
\ s:tag_parser,
|
||||
\ {'match': {x -> x =~# '^tags: '},
|
||||
\ 'parse': {x -> split(matchstr(x, '^tags:\zs.*'), '[ ,]\+')}}
|
||||
\ ]
|
||||
" number of lines from the top to scan for tags
|
||||
let g:wiki_tag_scan_num_lines = 500
|
||||
" search through the tags in the wiki
|
||||
nmap <leader>wf :WikiFzfTags <CR>
|
||||
" find backlinks to this document
|
||||
nmap <leader>wb :WikiGraphFindBacklinks <CR>
|
||||
" find in ToC/structure of the (markdown) file
|
||||
nmap <leader>ft :WikiFzfToc <CR>
|
||||
|
||||
|
||||
" == End of plugins ============================================================
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user