Skip to content

Commit

Permalink
fix: added lua/plugins.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Mar 4, 2024
1 parent ce90a6c commit 811288a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions home/.config/nvim/lua/plugins.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
-- 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)
-- Packer can manage itself
use 'wbthomason/packer.nvim'

use({
"jackMort/ChatGPT.nvim",
config = function()
require("chatgpt").setup()
end,
requires = {
"MunifTanjim/nui.nvim",
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim"
}
})
end)

0 comments on commit 811288a

Please sign in to comment.