--- /dev/null
+" Plugins will be downloaded under the specified directory.
+call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')
+
+" Declare the list of plugins.
+" 42 Header on F1
+Plug 'https://github.com/42Paris/42header'
+
+" List ends here. Plugins become visible to Vim after this call.
+call plug#end()
+
+" Defining name and email for the 42 header
+let g:user42 = 'ljiriste'
+let g:mail42 = 'ljiriste@student.42prague.com'
+
+set nocompatible
+set tabstop=4
+set shiftwidth=0
+set number relativenumber
+set incsearch
+set autoindent
+syntax on
+" filetype plugin indent on " redundant after syntax on
+set splitright
+
+" Add every subfolder of the vim root folder to path for find command
+set path+=**
+
+" Add visual menu
+set wildmenu