nvim-config/lua/plugins.lua
Valentin Popov 865c863f79
Plugged in the theme
Signed-off-by: Valentin Popov <valentin@popov.link>
2023-03-30 15:55:02 +04:00

11 lines
307 B
Lua

-- This file can be loaded by calling `lua require('plugins')` from your init.vim
-- Only required if you have packer configured as `opt`
vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
use { 'wbthomason/packer.nvim', opt = true }
use { 'tanvirtin/monokai.nvim' }
end)