1
0
mirror of https://codeberg.org/diginaut/dotfiles.git synced 2026-05-07 12:22:35 +02:00

2 Commits

Author SHA1 Message Date
diginaut e3541e9ed3 Only use these directories when regular user 2020-03-09 15:36:48 +01:00
diginaut 53b8eb72de Disable vimwiki for now, it's not really needed 2020-03-09 15:34:03 +01:00
+9 -7
View File
@@ -415,7 +415,7 @@ let g:mdnav#Extensions = '.md, .MD, .markdown, .todo, .txt, .rst'
" vimwiki " vimwiki
Plug 'vimwiki/vimwiki', { 'branch': 'dev' } "Plug 'vimwiki/vimwiki', { 'branch': 'dev' }
let wiki_1 = {} let wiki_1 = {}
let wiki_1.path = '~/phren/' let wiki_1.path = '~/phren/'
let wiki_1.syntax = 'markdown' let wiki_1.syntax = 'markdown'
@@ -440,12 +440,14 @@ let g:vimwiki_markdown_link_ext = 1
nmap <leader>wb :VimwikiBacklinks <CR> nmap <leader>wb :VimwikiBacklinks <CR>
" notational velocity with fzf: quickly search and open notes if $USER != 'root'
Plug 'https://github.com/alok/notational-fzf-vim' " notational velocity with fzf: quickly search and open notes
let g:nv_search_paths = ['~/phren', '~/mydocs', '~/.dot/caplog'] Plug 'https://github.com/alok/notational-fzf-vim'
let g:nv_ignore_pattern = ['*.xml', '*.svg'] let g:nv_search_paths = ['~/phren', '~/mydocs', '~/.dot/caplog']
" Quickly open the search with this shortcut let g:nv_ignore_pattern = ['*.xml', '*.svg']
nmap <leader>n :NV <CR> " Quickly open the search with this shortcut
nmap <leader>n :NV <CR>
endif
" The NERD Commenter: A plugin that allows for easy commenting of code for " The NERD Commenter: A plugin that allows for easy commenting of code for