diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-10-13 10:43:49 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-10-13 10:43:49 -0400 |
commit | a66988a6e884273b13a12a85ab80dd08e8a7ce4a (patch) | |
tree | da3373a6e92b203c132eeb9e61cbeca53915d710 /.config/nvim/lua/ben/packer.lua | |
parent | 1d1039dfd58c3295c03f98a1890fb67f1bf98a46 (diff) |
Lots of changes
Diffstat (limited to '.config/nvim/lua/ben/packer.lua')
-rw-r--r-- | .config/nvim/lua/ben/packer.lua | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/.config/nvim/lua/ben/packer.lua b/.config/nvim/lua/ben/packer.lua deleted file mode 100644 index c17f4e2..0000000 --- a/.config/nvim/lua/ben/packer.lua +++ /dev/null @@ -1,43 +0,0 @@ ----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 { - 'nvim-telescope/telescope.nvim', tag = '0.1.3', - -- or , branch = '0.1.x', - requires = { {'nvim-lua/plenary.nvim'} } - } - use({ - 'sainnhe/everforest', - config = function() - vim.cmd('colorscheme everforest') - end - }) - use ('ChausseBenjamin/friffle-vim') - use('nvim-treesitter/nvim-treesitter', {run = ':TSUpdate'}) - use('theprimeagen/harpoon') - use('mbbill/undotree') - use('tpope/vim-fugitive') - use('tpope/vim-surround') - use { - 'VonHeikemen/lsp-zero.nvim', - branch = 'v2.x', - requires = { - -- LSP Support - {'neovim/nvim-lspconfig'}, -- Required - {'williamboman/mason.nvim'}, -- Optional - {'williamboman/mason-lspconfig.nvim'}, -- Optional - -- Autocompletion - {'hrsh7th/nvim-cmp'}, -- Required - {'hrsh7th/cmp-nvim-lsp'}, -- Required - {'L3MON4D3/LuaSnip'}, -- Required - } - } - use {'nvim-treesitter/nvim-treesitter'} - use {'nvim-orgmode/orgmode', config = function() - require('orgmode').setup{} - end} - use ('github/copilot.nvim') -end) |