-"" Plugins will be downloaded under the specified directory.
-"" The Plugin manager project is on https://github.com/junegunn/vim-plug
-"call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')
-"
-"Plug 'vim-latex/vim-latex'
-"
-"" List ends here. Plugins become visible to Vim after this call.
-"call plug#end()
+" Plugins will be downloaded under the specified directory.
+" The Plugin manager project is on https://github.com/junegunn/vim-plug
+call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')
+
+" Declare the list of plugins.
+
+Plug 'vim-latex/vim-latex'
+
+Plug 'vimwiki/vimwiki'
+
+" List ends here. Plugins become visible to Vim after this call.
+call plug#end()
" May be useful for vim-latex?
let g:tex_flavor='latex'
set nocompatible
set tabstop=4
set shiftwidth=0
-set textwidth=80
set number relativenumber
set incsearch
set autoindent
set splitright
+colorscheme desert
set belloff=all
+" Add visual menu
+
+set wildmode=longest:full,full
+set wildmenu
+
" Add every subfolder of the vim root folder to path for find command
set path+=**
-" Add visual menu
-set wildmenu
+" Source the vimwiki wikis if there are any
+try
+ source ~/.vimwiki_list
+catch
+endtry
syntax on
filetype plugin indent on " redundant after syntax on