This commit is contained in:
Václav Uruba 2020-11-22 15:38:24 +01:00
parent d3b7739447
commit b241f080d3
Signed by: uruba
GPG Key ID: 0059B34D61727BB0

View File

@ -0,0 +1,26 @@
" Plugins
call plug#begin('~/.vim/plugged')
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'itchyny/lightline.vim'
call plug#end()
syntax on
colorscheme dracula
" Indentation
filetype plugin indent on
set expandtab
set tabstop=4
set shiftwidth=4
set autoindent
set smartindent
" Lightline
set laststatus=2
" Line numbers
set number
set relativenumber