summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/init.lua
blob: 63c893cb3f35acd1d390401b8e49c9b3762fe389 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
local fn = vim.fn
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'
if fn.empty(fn.glob(install_path)) > 0 then
	packer_bootstrap = fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path})
end

vim.cmd [[packadd packer.nvim]]

return require('packer').startup(function(use)
	use 'wbthomason/packer.nvim'
	use 'nvim-lua/plenary.nvim'
	use 'neovim/nvim-lspconfig'
	use 'hrsh7th/cmp-nvim-lsp'
	use 'hrsh7th/cmp-buffer'
	use 'hrsh7th/cmp-path'
	use 'hrsh7th/nvim-cmp'
  use {
    'nvim-lualine/lualine.nvim',
    config = function()
      require 'plugins.lualine'
    end
  }

	-- движок сниппетов
  use {
    'L3MON4D3/LuaSnip',
    after = 'friendly-snippets',
    config = function()
      require('luasnip/loaders/from_vscode').load({
       paths = { '~/.local/share/nvim/site/pack/packer/start/friendly-snippets' }
      })
    end
  }

  -- автодополнения для сниппетов
  use 'saadparwaiz1/cmp_luasnip'

  -- набор готовых сниппетов для всех языков, включая go
  use 'rafamadriz/friendly-snippets'

  -- плагин для простого комментирования кода
  use {
    'numToStr/Comment.nvim',
    config = function()
      require('Comment').setup()
    end
  }
	use {
		'nvim-treesitter/nvim-treesitter',
		run = ':TSUpdate',
		config = function()
			require 'plugins.treesitter'
		end
	}
	use {
		'nvim-telescope/telescope.nvim',
		config = function()
			require 'plugins.telescope'
		end
	}
	use {
		'olexsmir/gopher.nvim',
		config = function()
			-- require 'plugins.gopher'
		end
	}
	use {
		'nvim-tree/nvim-tree.lua',
		config = function()
			require 'plugins.tree'
		end
	}
	use 'nvim-tree/nvim-web-devicons'
	if packer_bootstrap then
		require('packer').sync()
	end
end)