Plugged in the theme

Signed-off-by: Valentin Popov <valentin@popov.link>
This commit is contained in:
Valentin Popov 2023-03-30 15:55:02 +04:00
parent de87a959a9
commit 865c863f79
Signed by: Valentin Popov
GPG Key ID: AE3CE523DAAA8401
4 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,5 @@
" Connecting the plugin manager
lua require('plugins')
lua require('init')
augroup packer_user_config
autocmd!

2
lua/init.lua Normal file
View File

@ -0,0 +1,2 @@
require('plugins')
require('theme')

View File

@ -4,5 +4,7 @@
vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
use 'wbthomason/packer.nvim'
use { 'wbthomason/packer.nvim', opt = true }
use { 'tanvirtin/monokai.nvim' }
end)

3
lua/theme.lua Normal file
View File

@ -0,0 +1,3 @@
require('monokai').setup {
palette = require('monokai').pro
}