blob: 2be30ef972bf985a61f7511e3c0ad534fbc6ecff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
use 'wbthomason/packer.nvim'
use {
'nvim-telescope/telescope.nvim', tag = '0.1.1',
-- or , branch = '0.1.x',
requires = { {'nvim-lua/plenary.nvim'} }
}
use({
'navarasu/onedark.nvim',
as = 'onedark',
config = function()
vim.cmd('colorscheme onedark')
end
})
use('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate'})
end)
|