mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
lets see the difference
This commit is contained in:
parent
ceda482e67
commit
9c3642bb8b
1 changed files with 38 additions and 41 deletions
|
|
@ -1,64 +1,54 @@
|
||||||
return {
|
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,
|
|
||||||
-- },
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"catppuccin/nvim",
|
"projekt0n/github-nvim-theme",
|
||||||
name = "catppuccin",
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||||
lazy = false,
|
priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
priority = 1000,
|
|
||||||
config = function()
|
config = function()
|
||||||
require("catppuccin").setup({
|
require("github-theme").setup({
|
||||||
opts = {
|
options = {
|
||||||
color_overrides = {
|
transparent = true,
|
||||||
mocha = {
|
|
||||||
base = "#000000",
|
|
||||||
mantle = "#000000",
|
|
||||||
crust = "#000000",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
vim.cmd("colorscheme catppuccin-mocha")
|
vim.cmd("colorscheme github_dark_high_contrast")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{ "williamboman/mason.nvim", enabled = false },
|
-- {
|
||||||
{ "williamboman/mason-lspconfig.nvim", enabled = false }, -- Optional
|
-- "catppuccin/nvim",
|
||||||
|
-- name = "catppuccin",
|
||||||
|
-- lazy = false,
|
||||||
|
-- priority = 1000,
|
||||||
|
-- config = function()
|
||||||
|
-- require("catppuccin").setup({
|
||||||
|
-- opts = {
|
||||||
|
-- color_overrides = {
|
||||||
|
-- mocha = {
|
||||||
|
-- base = "#000000",
|
||||||
|
-- mantle = "#000000",
|
||||||
|
-- crust = "#000000",
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- })
|
||||||
|
-- vim.cmd("colorscheme catppuccin-mocha")
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
|
|
||||||
{
|
{
|
||||||
"VonHeikemen/lsp-zero.nvim",
|
"VonHeikemen/lsp-zero.nvim",
|
||||||
branch = "v2.x",
|
branch = "v2.x",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
-- LSP Support
|
{ "neovim/nvim-lspconfig" },
|
||||||
{ "neovim/nvim-lspconfig" }, -- Required
|
|
||||||
|
|
||||||
-- Autocompletion
|
{ "hrsh7th/nvim-cmp" },
|
||||||
{ "hrsh7th/nvim-cmp" }, -- Required
|
|
||||||
{ "hrsh7th/cmp-buffer" },
|
{ "hrsh7th/cmp-buffer" },
|
||||||
{ "hrsh7th/cmp-path" },
|
{ "hrsh7th/cmp-path" },
|
||||||
{ "hrsh7th/cmp-nvim-lsp" }, -- Required
|
{ "hrsh7th/cmp-nvim-lsp" },
|
||||||
|
|
||||||
{ "L3MON4D3/LuaSnip" }, -- Required
|
{ "L3MON4D3/LuaSnip" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{ "raichoo/purescript-vim" },
|
|
||||||
{ "vmchale/dhall-vim" },
|
|
||||||
{ "elixir-lang/vim-elixir" },
|
|
||||||
{ "xiyaowong/transparent.nvim" },
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"jackMort/ChatGPT.nvim",
|
"jackMort/ChatGPT.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
|
|
@ -73,4 +63,11 @@ return {
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{ "raichoo/purescript-vim" },
|
||||||
|
{ "vmchale/dhall-vim" },
|
||||||
|
{ "elixir-lang/vim-elixir" },
|
||||||
|
{ "xiyaowong/transparent.nvim" },
|
||||||
|
{ "williamboman/mason.nvim", enabled = false },
|
||||||
|
{ "williamboman/mason-lspconfig.nvim", enabled = false },
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue