complete begginer trying to use this vim plugin
Hi there... This might seem super dumb, but im a complete beginner in programing, I can't seem to be able to get this to work. can someone please help.
Thank you!

" Plugins will be downloaded under the specified directory. call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugg ed')
" Declare the list of plugins. Plug 'tpope/vim-sensible' Plug 'junegunn/seoul256.vim' Plug 'folke/tokyonight.nvim', { 'branch': 'main' }
" List ends here. Plugins become visible to Vim after this call. call plug#end()
let g:lightline = {'colorscheme': 'tokyonight'}
" Example config in VimScript let g:tokyonight_style = "night" let g:tokyonight_italic_functions = 1 let g:tokyonight_sidebars = [ "qf", "vista_kind", "terminal", "packer" ]
" Change the hint color to the orange color, and make the error color " bright red let g:tokyonight_colors = { \ 'hint': 'orange', \ 'error': '#ff0000' \ }
" Load the colorscheme
colorscheme tokyonight
I have read the menu and tried to google this for 3 hours now.... i really tried to solve this by myself but it just seems a bit too complicated for me..
have you :PlugInstall-ed?
Closing this, since this is not a TokyoNight issue...