commit 9d94e6a48d7152afd85445de64f0f74641edfdae
parent 718d501e8c81c34dc7209b30659d1de7293cbb78
Author: oscarbenedito <oscar@oscarbenedito.com>
Date: Sat, 9 May 2020 12:56:54 +0200
Revert show indentation spaces
It was breaking vimwiki. For now I'm deleting it. Will look into it some
other time.
Diffstat:
1 file changed, 3 insertions(+), 12 deletions(-)
diff --git a/dot_config/nvim/init.vim b/dot_config/nvim/init.vim
@@ -15,23 +15,15 @@ Plug 'tpope/vim-surround' " surrounding objects
Plug 'tpope/vim-commentary' " easily comment objects
Plug 'tpope/vim-fugitive' " git wrapper
Plug 'vimwiki/vimwiki'
-Plug 'Yggdroot/indentLine' " leading spaces
call plug#end()
" vimwiki
-let g:vimwiki_list = [{ 'path': '~/Documents/wiki', 'path_html': '~/Documents/wiki/build/html', 'custom_wiki2html': '~/Documents/wiki/build/build.py', 'syntax': 'markdown', 'ext': '.md' }]
-let g:vimwiki_folding = 'expr'
-let g:vimwiki_global_ext = 0
+let g:vimwiki_list=[{ 'path': '~/Documents/wiki', 'path_html': '~/Documents/wiki/build/html', 'custom_wiki2html': '~/Documents/wiki/build/build.py', 'syntax': 'markdown', 'ext': '.md' }]
+let g:vimwiki_folding='expr'
+let g:vimwiki_global_ext=0
autocmd FileType vimwiki set foldlevel=1
:nmap <Leader>t <Plug>VimwikiVSplitLink
-" indentLine
-let g:indentLine_leadingSpaceChar='ยท'
-let g:indentLine_leadingSpaceEnabled=1
-let g:indentLine_enabled=0
-let g:indentLine_color_term='238' " onedark color
-let g:indentLine_color_gui='#3B4048' " onedark color
-
" /plugins }}}
" latex-suite {{{
@@ -160,5 +152,4 @@ nnoremap <Leader>latexm :-1read $XDG_CONFIG_HOME/nvim/templates/tex.Makefile<CR>
" /templates }}}
-
runtime shortcuts.vim