Added vimwiki with config
This commit is contained in:
parent
2feda9afa3
commit
3637ce1f94
1 changed files with 10 additions and 0 deletions
|
@ -42,6 +42,8 @@ Plug 'alfredodeza/pytest.vim'
|
||||||
|
|
||||||
Plug 'cespare/vim-toml'
|
Plug 'cespare/vim-toml'
|
||||||
|
|
||||||
|
Plug 'vimwiki/vimwiki'
|
||||||
|
|
||||||
Plug 'git@gitlab.softwareparadies.de:IDE/swp-vim.git'
|
Plug 'git@gitlab.softwareparadies.de:IDE/swp-vim.git'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
@ -171,6 +173,14 @@ augroup color_column
|
||||||
autocmd Filetype cpp,python set colorcolumn=101
|
autocmd Filetype cpp,python set colorcolumn=101
|
||||||
augroup end
|
augroup end
|
||||||
|
|
||||||
|
" format on save
|
||||||
augroup auto_format
|
augroup auto_format
|
||||||
autocmd BufWritePre *.py,*.rs :call LanguageClient#textDocument_formatting_sync()
|
autocmd BufWritePre *.py,*.rs :call LanguageClient#textDocument_formatting_sync()
|
||||||
augroup end
|
augroup end
|
||||||
|
|
||||||
|
" vimwiki
|
||||||
|
let g:vimwiki_list = [
|
||||||
|
\ {'name': 'personal', 'path': '~/vimwiki/personal'},
|
||||||
|
\ {'name': 'swp', 'path': '~/vimwiki/swp'}
|
||||||
|
\ ]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue