mirror of
https://github.com/gabehf/nvim-conf.git
synced 2026-03-11 16:30:30 -07:00
idk
This commit is contained in:
parent
a320162cf4
commit
6567c2cf57
8 changed files with 88 additions and 31 deletions
|
|
@ -4,36 +4,40 @@ return {
|
|||
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",
|
||||
},
|
||||
transparent_background = true,
|
||||
integrations = {
|
||||
notify = true,
|
||||
},
|
||||
-- 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,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ return {
|
|||
yaml = { { "prettierd", "prettier" } },
|
||||
markdown = { { "prettierd", "prettier" } },
|
||||
["markdown.mdx"] = { { "prettierd", "prettier" } },
|
||||
ruby = { { "prettierd", "prettier" } },
|
||||
ruby = { { "rubyfmt" } },
|
||||
},
|
||||
},
|
||||
config = function(_, opts)
|
||||
|
|
|
|||
9
lua/plugins/kanagawa.lua
Normal file
9
lua/plugins/kanagawa.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
"rebelot/kanagawa.nvim",
|
||||
config = function()
|
||||
require("kanagawa").setup {
|
||||
compile = true,
|
||||
transparent = true,
|
||||
}
|
||||
end,
|
||||
}
|
||||
26
lua/plugins/noice.lua
Normal file
26
lua/plugins/noice.lua
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
{
|
||||
"folke/noice.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
-- add any options here
|
||||
},
|
||||
dependencies = {
|
||||
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
|
||||
"MunifTanjim/nui.nvim",
|
||||
-- OPTIONAL:
|
||||
-- `nvim-notify` is only needed, if you want to use the notification view.
|
||||
-- If not available, we use `mini` as the fallback
|
||||
"rcarriga/nvim-notify",
|
||||
},
|
||||
},
|
||||
{
|
||||
"folke/todo-comments.nvim",
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
opts = {
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
},
|
||||
},
|
||||
}
|
||||
8
lua/plugins/twilight.lua
Normal file
8
lua/plugins/twilight.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
"folke/twilight.nvim",
|
||||
opts = {
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue