mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 16:39:42 -04:00
39 lines
958 B
Lua
39 lines
958 B
Lua
return {
|
|
{
|
|
'projekt0n/github-nvim-theme',
|
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
|
priority = 1000, -- make sure to load this before all the other start plugins
|
|
config = function()
|
|
require('github-theme').setup({
|
|
options = {
|
|
transparent = true;
|
|
}
|
|
})
|
|
|
|
vim.cmd('colorscheme github_dark_high_contrast')
|
|
end,
|
|
},
|
|
|
|
{'williamboman/mason.nvim', enabled = false },
|
|
|
|
{
|
|
'VonHeikemen/lsp-zero.nvim',
|
|
branch = 'v2.x',
|
|
dependencies = {
|
|
-- LSP Support
|
|
{'neovim/nvim-lspconfig'}, -- Required
|
|
{'williamboman/mason-lspconfig.nvim'}, -- Optional
|
|
|
|
-- Autocompletion
|
|
{'hrsh7th/nvim-cmp'}, -- Required
|
|
{'hrsh7th/cmp-nvim-lsp'}, -- Required
|
|
{'L3MON4D3/LuaSnip'}, -- Required
|
|
}
|
|
},
|
|
|
|
{ 'raichoo/purescript-vim' },
|
|
{ 'vmchale/dhall-vim' },
|
|
{ 'elixir-lang/vim-elixir' },
|
|
{ 'xiyaowong/transparent.nvim'},
|
|
|
|
}
|