53 lines
1.5 KiB
Lua
53 lines
1.5 KiB
Lua
require("lazy").setup({
|
|
spec = {
|
|
-- install plugins
|
|
{ 'nvim-treesitter/nvim-treesitter', opts = {} },
|
|
{ 'ellisonleao/gruvbox.nvim' },
|
|
{ 'danilamihailov/beacon.nvim' },
|
|
{ 'nvim-lua/plenary.nvim' },
|
|
{
|
|
'folke/todo-comments.nvim',
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
},
|
|
|
|
-- -- language server stuff
|
|
{'williamboman/mason.nvim' },
|
|
{'williamboman/mason-lspconfig.nvim' },
|
|
{'neovim/nvim-lspconfig' },
|
|
{'simrat39/rust-tools.nvim' },
|
|
|
|
-- -- nushell support
|
|
-- --use { 'LhKipp/nvim-nu', run = function() vim.fn[':TSInstall nu'] end} }
|
|
{ 'LhKipp/nvim-nu' },
|
|
|
|
-- -- Completion framework:
|
|
{ 'hrsh7th/nvim-cmp' },
|
|
|
|
-- -- LSP completion source:
|
|
{ 'hrsh7th/cmp-nvim-lsp' },
|
|
|
|
-- -- Useful completion sources:
|
|
{ 'hrsh7th/cmp-nvim-lua' },
|
|
{ 'hrsh7th/cmp-nvim-lsp-signature-help' },
|
|
{ 'hrsh7th/cmp-vsnip' },
|
|
{ 'hrsh7th/cmp-path' },
|
|
{ 'hrsh7th/cmp-buffer' },
|
|
{ 'hrsh7th/vim-vsnip' },
|
|
|
|
{ 'nvim-telescope/telescope.nvim', branch = '0.1.x',
|
|
dependencies = {'nvim-lua/plenary.nvim' }
|
|
},
|
|
|
|
-- -- status line
|
|
{
|
|
'nvim-lualine/lualine.nvim',
|
|
--requires = { 'nvim-tree/nvim-web-devicons', opt = true }
|
|
},
|
|
},
|
|
-- Configure any other settings here. See the documentation for more details.
|
|
-- colorscheme that will be used when installing plugins.
|
|
install = { colorscheme = { "habamax" } },
|
|
-- automatically check for plugin updates
|
|
checker = { enabled = true },
|
|
})
|