mirror of https://github.com/gabehf/nvim-conf.git
parent
39bb1219dc
commit
a320162cf4
@ -0,0 +1 @@
|
||||
return {}
|
||||
@ -1,8 +1,8 @@
|
||||
return {
|
||||
"NvChad/base46",
|
||||
branch = "v2.5",
|
||||
lazy = true,
|
||||
build = function()
|
||||
require("base46").load_all_highlights()
|
||||
end,
|
||||
-- "NvChad/base46",
|
||||
-- branch = "v2.5",
|
||||
-- lazy = true,
|
||||
-- build = function()
|
||||
-- require("base46").load_all_highlights()
|
||||
-- end,
|
||||
}
|
||||
|
||||
@ -0,0 +1 @@
|
||||
return { "akinsho/bufferline.nvim", version = "*", dependencies = "nvim-tree/nvim-web-devicons" }
|
||||
@ -0,0 +1,39 @@
|
||||
return {
|
||||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
priority = 1000,
|
||||
config = function()
|
||||
require("catppuccin").setup {
|
||||
color_overrides = {
|
||||
mocha = {
|
||||
rosewater = "#efc9c2",
|
||||
flamingo = "#ebb2b2",
|
||||
pink = "#f2a7de",
|
||||
mauve = "#b889f4",
|
||||
red = "#ea7183",
|
||||
maroon = "#ea838c",
|
||||
peach = "#f39967",
|
||||
yellow = "#eaca89",
|
||||
green = "#96d382",
|
||||
teal = "#78cec1",
|
||||
sky = "#91d7e3",
|
||||
sapphire = "#68bae0",
|
||||
blue = "#739df2",
|
||||
lavender = "#a0a8f6",
|
||||
text = "#b5c1f1",
|
||||
subtext1 = "#a6b0d8",
|
||||
subtext0 = "#959ec2",
|
||||
overlay2 = "#848cad",
|
||||
overlay1 = "#717997",
|
||||
overlay0 = "#63677f",
|
||||
surface2 = "#505469",
|
||||
surface1 = "#3e4255",
|
||||
surface0 = "#2c2f40",
|
||||
base = "#1a1c2a",
|
||||
mantle = "#141620",
|
||||
crust = "#0e0f16",
|
||||
},
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
||||
@ -0,0 +1,4 @@
|
||||
return {
|
||||
"nvim-lualine/lualine.nvim",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
}
|
||||
@ -0,0 +1,39 @@
|
||||
return {
|
||||
"hrsh7th/nvim-cmp",
|
||||
dependencies = {
|
||||
{
|
||||
-- snippet plugin
|
||||
"L3MON4D3/LuaSnip",
|
||||
dependencies = "rafamadriz/friendly-snippets",
|
||||
opts = { history = true, updateevents = "TextChanged,TextChangedI" },
|
||||
config = function(_, opts)
|
||||
require("luasnip").config.set_config(opts)
|
||||
require "configs.luasnip"
|
||||
end,
|
||||
},
|
||||
|
||||
-- autopairing of (){}[] etc
|
||||
{
|
||||
"windwp/nvim-autopairs",
|
||||
opts = {
|
||||
fast_wrap = {},
|
||||
disable_filetype = { "TelescopePrompt", "vim" },
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("nvim-autopairs").setup(opts)
|
||||
|
||||
-- setup cmp for autopairs
|
||||
local cmp_autopairs = require "nvim-autopairs.completion.cmp"
|
||||
require("cmp").event:on("confirm_done", cmp_autopairs.on_confirm_done())
|
||||
end,
|
||||
},
|
||||
|
||||
-- cmp sources plugins
|
||||
{
|
||||
"saadparwaiz1/cmp_luasnip",
|
||||
"hrsh7th/cmp-nvim-lua",
|
||||
"hrsh7th/cmp-buffer",
|
||||
"hrsh7th/cmp-path",
|
||||
},
|
||||
},
|
||||
}
|
||||
@ -0,0 +1,6 @@
|
||||
return {
|
||||
"nyngwang/nvimgelion",
|
||||
config = function()
|
||||
-- do whatever you want for further customization~
|
||||
end,
|
||||
}
|
||||
@ -1,8 +1,8 @@
|
||||
return {
|
||||
"NvChad/ui",
|
||||
lazy = false,
|
||||
branch = "v2.5",
|
||||
config = function()
|
||||
require "nvchad"
|
||||
end,
|
||||
-- "NvChad/ui",
|
||||
-- lazy = false,
|
||||
-- branch = "v2.5",
|
||||
-- config = function()
|
||||
-- require "nvchad"
|
||||
-- end,
|
||||
}
|
||||
|
||||
Loading…
Reference in new issue