nvim-config/lua/plugins.lua
Valentin Popov 8419ce3492
Installed some plugins
Signed-off-by: Valentin Popov <valentin@popov.link>
2023-03-30 17:11:06 +04:00

17 lines
426 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 { 'EdenEast/nightfox.nvim' }
use { 'nvim-lualine/lualine.nvim' }
use { 'numToStr/Comment.nvim' }
use { 'nvim-treesitter/nvim-treesitter' }
end)