Ivan Polyakov
2 years ago
2 changed files with 58 additions and 24 deletions
@ -1,31 +1,39 @@ |
|||||||
return require('packer').startup(function() |
return require('packer').startup(function() |
||||||
use 'wbthomason/packer.nvim' |
use 'wbthomason/packer.nvim' |
||||||
|
|
||||||
|
-- Look and feel -- |
||||||
use 'shaunsingh/nord.nvim' |
use 'shaunsingh/nord.nvim' |
||||||
|
|
||||||
use { |
use { |
||||||
'nvim-lualine/lualine.nvim', |
'nvim-lualine/lualine.nvim', |
||||||
requires = { 'kyazdani42/nvim-web-devicons', opt = true } |
requires = { 'kyazdani42/nvim-web-devicons', opt = true } |
||||||
} |
} |
||||||
|
|
||||||
use 'preservim/nerdtree' |
use 'preservim/nerdtree' |
||||||
|
|
||||||
use 'dcampos/nvim-snippy' |
|
||||||
|
|
||||||
|
-- Snippets -- |
||||||
|
use 'dcampos/nvim-snippy' |
||||||
use 'honza/vim-snippets' |
use 'honza/vim-snippets' |
||||||
|
|
||||||
|
|
||||||
|
-- Languages -- |
||||||
use { |
use { |
||||||
'lervag/vimtex', |
'lervag/vimtex', |
||||||
tag = 'v2.9', |
tag = 'v2.9', |
||||||
ft = 'tex' |
ft = 'tex' |
||||||
} |
} |
||||||
|
|
||||||
use { |
use { |
||||||
'digitaltoad/vim-pug', |
'digitaltoad/vim-pug', |
||||||
ft = {'pug', 'vue'} |
ft = {'pug', 'vue'} |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
|
-- LSP and completions -- |
||||||
use 'neovim/nvim-lspconfig' |
use 'neovim/nvim-lspconfig' |
||||||
|
use 'hrsh7th/nvim-cmp' |
||||||
|
use 'hrsh7th/cmp-nvim-lsp' |
||||||
|
use 'dcampos/cmp-snippy' -- Completions for snippets |
||||||
|
|
||||||
|
|
||||||
use 'MunifTanjim/nui.nvim' |
-- Another tools -- |
||||||
|
use 'MunifTanjim/nui.nvim' -- UI framework |
||||||
end) |
end) |
||||||
|
Loading…
Reference in new issue