30 lines
848 B
Lua
30 lines
848 B
Lua
return {
|
|
{ "catppuccin/nvim", name = "catppuccin", priority = 1000 },
|
|
{ 'nvim-telescope/telescope.nvim', tag = '0.1.5', dependencies = { 'nvim-lua/plenary.nvim' } },
|
|
{ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" },
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
init_options = {
|
|
userLanguages = {
|
|
eelixir = "html-eex",
|
|
eruby = "erb",
|
|
rust = "html",
|
|
},
|
|
},
|
|
},
|
|
{ 'hrsh7th/cmp-nvim-lsp' },
|
|
{ 'hrsh7th/cmp-buffer' },
|
|
{ 'hrsh7th/cmp-path' },
|
|
{ 'hrsh7th/cmp-cmdline' },
|
|
{ 'hrsh7th/nvim-cmp' },
|
|
{ 'hrsh7th/cmp-vsnip' },
|
|
{ 'hrsh7th/vim-vsnip' },
|
|
{
|
|
"iamcco/markdown-preview.nvim",
|
|
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
|
|
ft = { "markdown" },
|
|
build = function() vim.fn["mkdp#util#install"]() end,
|
|
},
|
|
{ 'michaelrommel/nvim-silicon' },
|
|
}
|